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

body {
    font-family:"Segoe UI", sans-serif;
    font-weight: 300;
    background: #F8F6F1;
    color: #2D2D2D;
    line-height: 1.6;
}

.contact-section {
    background: #F8F6F1;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contact-header {
    background: #4F6F52;
    text-align: center;
    padding: 20px;
}

.contact-header h2 {
    color: white;
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact-item {
    text-align: center;
    padding: 50px 35px;
    border-right: 1px solid #D8E2D5;
}

.contact-item:nth-child(3n) {
    border-right: none;
}

.contact-item i {
    font-size: 42px;
    color: #7BAE7F;
    margin-bottom: 20px;
}

.contact-item h3 {
    color: #2F3A33;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-item p {
    color: #6B756E;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.location-section {
    background: #F8F6F1;
    padding: 0 20px 100px;
}

.location-container {
    max-width: 1100px;
    margin: 0 auto;
}

.location-header {
    text-align: center;
    margin-bottom: 30px;
}

.location-header h2 {
    color: #2F3A33;
    font-size: 2rem;
    margin-bottom: 10px;
}

.location-header p {
    color: #6B756E;
    font-size: 1.1rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-info {
    padding: 50px 40px;
    background: #FFFFFF;
}

.location-info h3 {
    color: #2F3A33;
    font-size: 1.8rem;
    margin-bottom: 35px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.location-item i {
    color: #7BAE7F;
    font-size: 1.4rem;
    margin-top: 3px;
    width: 24px;
}

.location-item strong {
    display: block;
    color: #2F3A33;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.location-item p {
    color: #6B756E;
    line-height: 1.7;
    margin: 0;
}

.location-btn {
    display: inline-block;
    margin-top: 15px;
    background: #D9BC77;
    color: #2F3A33;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 999px;
    transition: 0.3s;
}

.location-btn:hover {
    transform: translateY(-2px);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    display: block;
}

@media only screen and (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        border-right: none;
        border-bottom: 1px solid #D8E2D5;
    }

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-header h2 {
        font-size: 1.6rem;
    }

    .contact-item h3 {
        font-size: 1.7rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 40px 30px;
    }

    .location-map iframe {
        min-height: 350px;
    }
}
