* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #4a4a4a;
    line-height: 1.6;
    background-color: #f5f3f0;
}

header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #c9a961;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
	width: 75px;
	height: 75px;
	border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #6b8e7d;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c9a961;
}

.hero {
    background-image: linear-gradient(135deg, rgba(201, 169, 97, 0.9), rgba(107, 142, 125, 0.9));
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: 2px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #c9a961;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 16px;
}

.btn:hover {
    background-color: #b8985a;
    transform: translateY(-2px);
}

.section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section h2 {
    font-size: 36px;
    color: #6b8e7d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: normal;
    letter-spacing: 1px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #6b8e7d;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.service-card h3 {
    color: #c9a961;
    margin-bottom: 15px;
    font-size: 24px;
}

.about {
    background-color: white;
    padding: 80px 20px;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.about-bg-img {
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonials {
    background-color: #6b8e7d;
    color: white;
    padding: 80px 20px;
    margin: 0;
    max-width: 100%;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials h2 {
    color: white;
}

.testimonial {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    margin-top: 15px;
    font-style: normal;
    color: #c9a961;
}

.contact {
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    color: #c9a961;
    margin-bottom: 10px;
}

.sched-consult {
    margin-top: 40px;
}

.consult-form {
    display: none;
}

footer {
    background-color: #6b8e7d;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    header {
        display: flex;
        flex-direction: column;
    }

    .logo {
        width: 100%;
        flex-basis: 100%;
        order: 1;
    }

    .logo img {
	    width: 170px;
	    height: 170px;
	    border-radius: 8px;
    }

    .name-txt {
        display: none;
    }

    .name-img {
        display: flex;
    }

    .nav {
        display: flex;
        text-align: center;
        width: 100%;
        order: 2;
        margin: auto;
        padding: inherit;
    }

    .nav-links{
        flex-direction: column;
        gap: 15px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .about-bg-img {
        opacity: 0.8;
        position: inherit;
        left: 0;
        top: 0;
        width: auto;
        max-width: 100%;
        height: auto;
    }

    .testimonial-container h2 {
        text-align: center;
    }
}