.page-header {
    background: linear-gradient(rgba(255, 182, 193, 0.8), rgba(255, 105, 180, 0.8)), url('https://via.placeholder.com/1200x300') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    padding: 60px 0;
    background-color: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: #ff6b9d;
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.departments {
    padding: 60px 0;
    background-color: #fffaf8;
}

.departments h2 {
    text-align: center;
    color: #ff6b9d;
    margin-bottom: 40px;
    font-size: 28px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.department-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.department-card:hover {
    transform: translateY(-10px);
}

.department-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.department-card h3 {
    color: #ff6b9d;
    margin-bottom: 15px;
    font-size: 22px;
}

.department-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    min-height: 60px;
}

.contact-person p {
    margin: 5px 0;
    color: #333;
    font-weight: 500;
}

.contact-person p:last-child {
    color: #ff6b9d;
    font-weight: normal;
}

.contact-info {
    padding: 60px 0;
    background-color: #fff;
}

.info-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    color: #ff6b9d;
    font-size: 32px;
    margin-bottom: 20px;
}

.info-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.info-text ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.info-text ul li::before {
    content: "✓";
    color: #ff6b9d;
    position: absolute;
    left: 0;
}

.social-links h3 {
    color: #ff6b9d;
    margin: 30px 0 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9eb5;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #ff6b9d;
}

@media (max-width: 768px) {
    .info-content {
        flex-direction: column;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}