.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.content-section {
    padding: 4rem 2rem;
}

.content-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.center-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.center-title h2 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.contact-info {
    margin-top: 2rem;
    display: grid;
    gap: 2.5rem;
}

.contact-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.contact-item a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #667eea;
    text-decoration: underline;
}

.contact-item strong {
    color: #333;
    font-weight: 600;
}

/* Google Maps Styles */
.map-container {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
}

.map-title {
    font-size: 1.8rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

.map-link {
    text-align: center;
}

.map-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 2rem;
    }

    .center-title h2 {
        font-size: 1.4rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .map-container {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .map-title {
        font-size: 1.5rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .map-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}

