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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.header {
    background-color: white;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 220px;
}

    .header-contact .phone {
        color: #365a62;
        font-size: 16px;
        font-weight: 600;
    }

    .header-contact .email {
        color: #365a62;
        font-size: 14px;
    }

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

    .logo img {
        height: 350px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin: 0;
    flex: 1;
    text-align: center;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 220px;
}

    nav a {
        color: #365a62;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
    }

        nav a:hover {
            color: #cb9c4c;
        }

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #365a62 0%, #4a7380 100%);
    padding: 80px 50px;
    padding-right: 70px; /* Add extra padding to the right */
    color: white;
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
}

.location-text h2 {
    color: #cb9c4c;
    font-size: 42px;
    margin-bottom: 25px;
}

.location-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.location-item {
    display: flex;
    gap: 15px;
    align-items: start;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.location-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.location-item strong {
    color: #cb9c4c;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.location-item p {
    margin: 0;
    font-size: 16px;
}

/* Services Overview Section */
.services-overview {
    background-color: white;
    padding: 80px 50px;
    text-align: center;
}

    .services-overview h2 {
        color: #365a62;
        font-size: 42px;
        margin-bottom: 20px;
    }

.services-intro {
    color: #666;
    font-size: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.service-card {
    background-color: #f5f5f5;
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .service-card h3 {
        color: #cb9c4c;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-card p {
        color: #333;
        font-size: 16px;
        line-height: 1.6;
    }

.services-cta-link {
    margin-top: 40px;
}

.learn-more-btn {
    display: inline-block;
    background-color: #cb9c4c;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.3s;
}

    .learn-more-btn:hover {
        opacity: 0.9;
    }

/* What Makes Us Different Section */
.difference-section {
    background-color: #fdf6ed;
    padding: 80px 50px;
    text-align: center;
}

    .difference-section h2 {
        color: #365a62;
        font-size: 42px;
        margin-bottom: 60px;
    }

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.difference-item {
    text-align: center;
    padding: 30px;
}

.difference-icon {
    font-size: 64px;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.difference-icon img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}


.difference-item h3 {
    color: #cb9c4c;
    font-size: 26px;
    margin-bottom: 15px;
}

.difference-item p {
    color: #333;
    font-size: 17px;
    line-height: 1.7;
}

/* Insurance Section */
.insurance-section {
    background-color: white;
    padding: 80px 50px;
}

    .insurance-section h2 {
        color: #365a62;
        font-size: 42px;
        margin-bottom: 50px;
        text-align: center;
    }

.insurance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.insurance-column h3 {
    color: #cb9c4c;
    font-size: 28px;
    margin-bottom: 20px;
}

.insurance-column p {
    color: #333;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.insurance-list,
.payment-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

    .insurance-list li,
    .payment-list li {
        color: #333;
        font-size: 17px;
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        line-height: 1.6;
    }

        .insurance-list li:before {
            content: "✓";
            color: #cb9c4c;
            font-weight: bold;
            font-size: 20px;
            position: absolute;
            left: 0;
        }

    .payment-list li {
        padding-left: 0;
        margin-bottom: 15px;
    }

.insurance-note {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #cb9c4c;
    margin-top: 25px;
}

.insurance-cta {
    margin-top: 25px;
    font-size: 17px;
}

    .insurance-cta a {
        color: #cb9c4c;
        font-weight: 600;
        text-decoration: none;
    }

        .insurance-cta a:hover {
            text-decoration: underline;
        }

.team-section {
    background-color: #f5f5f5;
    padding: 80px 60px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

    .team-header h2 {
        color: #365a62;
        font-size: 42px;
        margin-bottom: 15px;
    }

    .team-header p {
        color: #666;
        font-size: 20px;
    }

.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

    .team-member.davies {
        background-color: #cb9c4c;
    }

    .team-member.keeler {
        background-color: #365a62;
    }

    .team-member img {
        width: 100%;
        max-width: 400px;
        height: auto;
        object-fit: cover;
        margin-bottom: 30px;
        border-radius: 8px;
    }

    .team-member h2 {
        color: #365a62;
        font-size: 36px;
        margin-bottom: 10px;
        text-align: center;
    }

    .team-member.keeler h2 {
        color: #cb9c4c;
    }

    .team-member h3 {
        color: #365a62;
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
    }

    .team-member.keeler h3 {
        color: #cb9c4c;
    }

    .team-member p {
        color: #333;
        font-size: 18px;
        line-height: 1.8;
        text-align: center;
        max-width: 500px;
    }

.contact-section {
    background-color: #f5f5f5;
    padding: 80px 50px;
    text-align: center;
}

    .contact-section h2 {
        color: #cb9c4c;
        font-size: 48px;
        margin-bottom: 10px;
    }

    .contact-section h3 {
        color: #365a62;
        font-size: 32px;
        margin-bottom: 40px;
    }

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        font-family: inherit;
    }

    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }

    .contact-form button {
        background-color: #cb9c4c;
        color: white;
        padding: 15px 60px;
        border: none;
        border-radius: 4px;
        font-size: 18px;
        cursor: pointer;
        transition: opacity 0.3s;
    }

        .contact-form button:hover {
            opacity: 0.9;
        }

.footer {
    background-color: #365a62;
    padding: 50px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.footer-links {
    text-align: left;
}

    .footer-links h4 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #cb9c4c;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 12px;
        font-size: 16px;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: #cb9c4c;
        }

.footer-contact {
    text-align: center;
}

    .footer-contact h4 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #cb9c4c;
    }

.footer-address {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-phone {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-email {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-logo-social {
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

    .footer-logo img {
        width: 300px;
        height: auto;
    }

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    overflow: hidden;
}

    .social-icon:hover {
        transform: scale(1.1);
    }

    .social-icon img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.alert {
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #a8c5d1 0%, #d4e4ea 100%);
    padding: 80px 50px;
    text-align: center;
}

    .services-hero h1 {
        color: #365a62;
        font-size: 48px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .services-hero p {
        color: #365a62;
        font-size: 20px;
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto;
    }

.services-list {
    background-color: #fdf6ed;
    padding: 80px 50px;
}

.service-item {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: start;
}

    .service-item:last-child {
        margin-bottom: 0;
    }

.service-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 5px solid #cb9c4c;
    padding-left: 20px;
}

    .service-icon img {
        width: 140px;
        height: 140px;
        object-fit: contain;
    }

.service-content h2 {
    color: #cb9c4c;
    font-size: 32px;
    margin-bottom: 15px;
}

.service-content .service-subtitle {
    color: #365a62;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    color: #333;
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

    .service-content li:before {
        content: "•";
        color: #cb9c4c;
        font-weight: bold;
        font-size: 24px;
        position: absolute;
        left: 0;
    }

.services-cta {
    background-color: #fdf6ed;
    padding: 0 50px 80px 50px;
    text-align: center;
}

    .services-cta p {
        color: #333;
        font-size: 20px;
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto 30px auto;
    }

    .services-cta .cta-button {
        display: inline-block;
        background-color: #cb9c4c;
        color: white;
        padding: 18px 50px;
        text-decoration: none;
        border-radius: 4px;
        font-size: 20px;
        font-weight: 500;
        transition: opacity 0.3s;
    }

        .services-cta .cta-button:hover {
            opacity: 0.9;
        }

@media (max-width: 768px) {
    .location-section {
        padding: 60px 20px;
        padding-right: 40px; /* Add extra padding to the right on mobile */
    }

    .location-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }

    .location-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .insurance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links,
    .footer-contact,
    .footer-logo-social {
        text-align: center;
    }

    .header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .header-contact {
        text-align: center;
        min-width: auto;
    }

    nav {
        align-items: center;
    }

    .logo img {
        height: 250px;
        object-fit: contain;
    }

    .site-title {
        font-size: 28px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-icon {
        border-left: none;
        border-top: 5px solid #cb9c4c;
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
        justify-content: center;
    }

    .services-hero h1 {
        font-size: 36px;
    }

    .services-hero p {
        font-size: 18px;
    }

    .location-text h2,
    .services-overview h2,
    .difference-section h2,
    .insurance-section h2,
    .team-header h2 {
        font-size: 32px;
    }
}
