/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&family=Sarabun:wght@300;400;500;600;700&display=swap');

/* General Styles */
body {
    font-family: 'Sarabun', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
}

/* Hero Section */
.hero-section {
    background-color: #1a237e;
    padding: 3rem 0;
}

.hero-section h2 {
    font-size: 1.75rem;
    font-weight: 500;
}

/* Contact Cards */
.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #1a237e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 28px;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card a {
    color: #1a237e;
    font-weight: 500;
}

.contact-card a:hover {
    color: #283593;
}

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
}

/* Social Links */
.social-link {
    padding: 1rem;
    border-radius: 8px;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-link .fa-chevron-right {
    color: #ccc;
    transition: transform 0.3s ease;
}

.social-link:hover .fa-chevron-right {
    transform: translateX(5px);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}