html, body{
    margin: 0;
    padding: 0;
    font-family: Arial,sans-serif;
    
    }

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #3C5896;
}

header .logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 1.1rem;
}

/* Quote Section Styles */
.quote-section {
    padding: 60px 20px;
    text-align: center;
    font-style: italic;
}

.quote-section div {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}

.quote-section .quote-author {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

/* Dividing Pattern */

.pattern-divider {
    background-image: url('../images/Pattern_Asset.png');
    background-repeat: repeat-x; 
    background-position: top center; 
    background-size: contain; 
    height: 50px; 
    margin: 20px 0; 
    opacity: 20%;
}


/* Introduction Section */
#profile {
    display: flex;
    justify-content: center;
    padding: 50px 150px;
    background-color: #3C5896;
    color: white;
}

.profile-container {
    display: flex; 
    align-items: center; 
}

.profile-picture {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin-right: 40px; 
}

.profile-text {
    display: flex;
    flex-direction: column; 
}

.profile-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.profile-text p {
    font-size: 1rem;
    margin-bottom: 10px; 
}


/* Call to Action Section */
.cta-section {
    padding: 40px 20px;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cta-container p {
    flex: 1;
    font-size: 2rem;
    font-style: italic;
    color: #000000;
    margin: 0;
}

.cta-button a {
    background-color: #3C5896;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button a:hover {
    background-color: #324b7e;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button {
        margin-top: 20px;
    }
}

/* Instagram Section */
#instagram {
    padding: 50px;
    text-align: left;
    background-color: #f7f7f7;
}

#instagram h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#instagram h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

#instagram .posts {
    display: flex;
    justify-content: space-around;
}

#instagram .post {
    width: 22%;
}

#instagram .post img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

#instagram .post p {
    font-size: 1rem;
}

/* Footer */
footer {
    padding: 40px 20px;
    border-top: 1px solid #3C5896;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 20px;
}

/* Social Media Icons */
.social-media {
    display: flex;
    padding: 20px 0;
    gap: 20px;
}

.social-media a img {
    width: 30px;
    height: 30px;
}

/* Navigation Links */
.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
}

/* Logo Footer */
.footer-logo img {
    width: 100px;
    height: auto;
    display: flex;
    padding: 20px;
}

/* Copyright Text */
footer p {
    font-size: 0.8rem;
    color: #000000;
    text-align: right;
    margin-top: 20px;
}