*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2C2A4A;
    line-height: 1.6;
    background-color: #f8f8ff;
}

.contact-header {
    text-align: center;
    padding: 90px 20px 30px;
    background-color: white;
}

.contact-header h1 {
    font-family: 'Epilogue', sans-serif;
    font-size: 42px;
    color: #2C2A4A;
    margin-bottom: 2px;
}

.contact-header .subhead {
    font-family: 'Lora', serif;
    font-size: 18px;
    color: #4b8c91;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-person {
    margin-bottom: 40px;
}

.contact-person h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    color: #2C2A4A;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.contact-person h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4b8c91;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(75, 140, 145, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b8c91;
    font-size: 16px;
}

.contact-text a {
    color: #4b8c91;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #3c7074;
    text-decoration: underline;
}

.contact-options {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-options h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    color: #2C2A4A;
    margin-bottom: 30px;
}

.option-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid rgba(75, 140, 145, 0.3);
    border-radius: 6px;
    background-color: white;
    color: #2C2A4A;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.option-btn:hover {
    background-color: #4b8c91;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(75, 140, 145, 0.2);
}

.option-btn i {
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .contact-header {
        padding: 100px 20px 60px;
    }
    
    .contact-header h1 {
        font-size: 36px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-options {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 80px 15px 40px;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
    
    .contact-header .subhead {
        font-size: 16px;
    }
    
    .contact-intro {
        font-size: 15px;
    }
    
    .option-buttons {
        gap: 12px;
    }
    
    .option-btn {
        padding: 14px;
        font-size: 14px;
    }
}