/* Reach Out Page Styling */
.reach-out-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.reach-out-title {
    color: #f99659;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.reach-out-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
}

.action-cards {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.action-card {
    background-color: #f99659;
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 350px;
}

.action-card h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.action-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.action-card-button {
    background-color: white;
    color: #f99659;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.action-card-button:hover {
    background-color: #7798CD;
    color: white;
    transform: scale(1.05);
}

.reach-out-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.reach-out-image-section img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reach-out-title {
        font-size: 36px;
    }
    
    .reach-out-intro {
        font-size: 18px;
    }
    
    .action-cards {
        flex-direction: column;
    }
    
    .action-card {
        min-width: 100%;
    }
    
    .action-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .reach-out-title {
        font-size: 28px;
    }
    
    .reach-out-intro {
        font-size: 16px;
    }
    
    .action-card h3 {
        font-size: 24px;
    }
    
    .action-card p {
        font-size: 16px;
    }
}
