body {
    font-family: 'Cormorant Garamond', serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
}

main {
    padding: 2rem;
    text-align: center;
}

h1, h2, h3 {
    font-weight: 400;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0;
    margin-bottom: 2rem;
    color: #666;
}

.form-group {
    margin-bottom: 1rem;
}

input, select, textarea {
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Specific Page Styles */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.faq-item {
    margin-bottom: 2rem;
}

.attire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 600px) {
    .attire-grid {
        grid-template-columns: 1fr;
    }
    .content-page {
        padding: 1.5rem;
    }
    h1 {
        font-size: 2rem;
    }
}
