:root {
    --background-color: #E3F3FF;
    --accent-blue: #4FB6D6;
    --accent-green: #7FBF7F;
    --text-dark: #000000;
    --text-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
}

header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    /* padding: 1rem; */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.testimonial-card {
    color: #222;
    font-family: 'Roboto', Arial, sans-serif;
    position: relative;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><text x="100%" y="0" dominant-baseline="hanging" text-anchor="end" font-size="150" fill="rgba(127, 191, 127, 0.3)">”</text></svg>') no-repeat;
    background-position: top right;
}


.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100px;
}
.logo {
    height: 60%;
    object-fit: contain;
}

h1 {
    font-family: 'Playfair Display', 'Roboto', Arial, sans-serif;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 400;
}

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

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--accent-blue);
}

.contact-info {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9rem;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: left;
    padding: 1rem 2rem;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-height: 300px;
}



.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 15px auto;
    height: 100%;
}

.hero-widepic {
    border-radius: 16px;
    width:100%;
    max-width:550px;
    flex-shrink: 0;
    margin: -1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo {
    border-radius: 16px;
    max-width: 309px;
    margin: -1rem;
}

.hero-text {
    flex: 1;
    padding: 0.5rem 0;
}

.hero-text h2 {
    font-family: 'Playfair Display';
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

p {
    padding-top: 7px;
    text-align: left;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.subjectgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.copyright {
    text-align: center;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.navlink {
    font-family: 'Playfair Display';
    font-weight: bold;
    font-size: 1.3rem;
}

h1 {
    font-family: 'Playfair Display';
    font-weight: bold;
}

h2 {
    font-family: 'Playfair Display';
    font-weight: bold;
}

.feature-card h3 {
    font-family: 'Playfair Display';
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: white;
    margin-top: 2rem;
}

.about-section {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.profile-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-content h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h2 {
        font-size: 1.75rem;
    }

    .profile-image {
        height: 300px;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .about-content h3 {
        font-size: 1.25rem;
    }
}

.contact-section {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-section h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--accent-green);
}

@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
} 