* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Header Styles */
.header {
    margin-bottom: 50px;
}

.main-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.5;
}

.subtitle .bold-text {
    font-weight: bold;
}

.duration {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gender Selection */
.gender-selection {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.gender-option {
    width: 300px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.image-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.gender-button {
    width: 100%;
    background-color: #2d5a3d;
    color: #fff;
    border: none;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 0 0 8px 8px;
}

.gender-button:hover {
    background-color: #1e3f29;
}

.gender-button .arrow {
    font-size: 24px;
    font-weight: bold;
}

/* Footer */
.footer {
    margin-top: 40px;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.disclaimer .link {
    color: #1e90ff;
    text-decoration: none;
}

.disclaimer .link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }
    
    .duration {
        font-size: 16px;
    }
    
    .gender-selection {
        flex-direction: column;
        align-items: center;
    }
    
    .gender-option {
        width: 100%;
        max-width: 300px;
    }
    
    .image-container img {
        height: 280px;
    }
}

