/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: #ec4899;
    margin-bottom: 0.2rem;
}

.logo span {
    font-size: 0.9rem;
    color: #9333ea;
    font-weight: 300;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef7ff 0%, #fdf4ff 50%, #f3e8ff 100%);
    padding: 4rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    color: #1f2937;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* Placeholder images */
.placeholder-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    border: 2px dashed #d1d5db;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #9ca3af;
    font-weight: 500;
    transition: all 0.3s ease;
}

.placeholder-image:hover {
    border-color: #ec4899;
    color: #ec4899;
}

.hero .placeholder-image {
    height: 400px;
}

/* Featured Collections */
.featured-collections {
    padding: 4rem 0;
    background: white;
}

.featured-collections h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.collection-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.collection-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1f2937;
}

.collection-card p {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials-preview {
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
    padding: 4rem 0;
}

.testimonials-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4b5563;
}

.testimonial cite {
    font-weight: 600;
    color: #ec4899;
    font-style: normal;
}

.text-center {
    text-align: center;
}

.link-button {
    color: #9333ea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-button:hover {
    color: #ec4899;
}

/* Newsletter */
.newsletter {
    background: white;
    padding: 4rem 0;
}

.newsletter h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.newsletter > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ec4899;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
    text-align: center;
    color: #9ca3af;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
    margin-bottom: 3rem;
}

.page-header h1 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.product-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    margin: 1rem 0;
}

.product-features li {
    padding: 0.25rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.price-note,
.limited-note {
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* New Product Badge */
.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

/* Collection Info */
.collection-info {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.collection-info h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.collection-info p {
    color: #6b7280;
    line-height: 1.7;
}

/* New Arrivals Banner */
.new-arrivals-banner {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
}

.banner-content h2 {
    margin-bottom: 1rem;
    color: white;
}

.banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Summer Features */
.summer-features {
    margin: 3rem 0;
}

.summer-features h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Call to Action */
.call-to-action {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
    border-radius: 20px;
}

.call-to-action a {
    color: #ec4899;
    text-decoration: none;
    font-weight: 600;
}

.call-to-action a:hover {
    color: #9333ea;
}

/* Testimonials Page */
.testimonials-container {
    margin: 3rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    border: 2px solid #ec4899;
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.2);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #1f2937;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-product {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.testimonial-product a {
    color: #ec4899;
    text-decoration: none;
    font-weight: 500;
}

.testimonial-product a:hover {
    color: #9333ea;
}

/* Rating Summary */
.rating-summary {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.rating-stats {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.rating-score {
    text-align: center;
}

.score {
    font-size: 3rem;
    font-weight: 700;
    color: #ec4899;
    display: block;
    margin-bottom: 0.5rem;
}

.stars {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.rating-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category span:first-child {
    min-width: 80px;
    color: #374151;
    font-weight: 500;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    transition: width 0.3s ease;
}

.category span:last-child {
    min-width: 30px;
    color: #374151;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
    border-radius: 20px;
}

.cta-section h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ec4899, #9333ea);
}

.cta-button.secondary {
    background: white;
    color: #ec4899;
    border: 2px solid #ec4899;
}

.cta-button.secondary:hover {
    background: #ec4899;
    color: white;
}

/* Newsletter Page */
.newsletter-page {
    margin: 2rem 0;
}

.newsletter-benefits {
    margin: 3rem 0;
}

.newsletter-benefits h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

.newsletter-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-form-detailed {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ec4899;
    display: inline-block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
}

.checkbox-label input,
.radio-label input {
    width: auto;
    margin-right: 0.75rem;
}

.privacy-notice {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.privacy-notice p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.privacy-notice input {
    width: auto;
    margin-top: 0.25rem;
}

.privacy-notice a {
    color: #ec4899;
    text-decoration: none;
}

.privacy-notice a:hover {
    color: #9333ea;
}

.submit-button-large {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.submit-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.success-message {
    text-align: center;
    padding: 3rem;
    background: #f0f9ff;
    border-radius: 20px;
    border: 2px solid #10b981;
}

.success-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.success-message p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.newsletter-info {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.newsletter-info h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.newsletter-info ul {
    list-style: none;
}

.newsletter-info li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.newsletter-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ec4899;
    font-weight: bold;
}

/* Legal Pages */
.legal-page {
    margin: 2rem 0;
}

.legal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content section:last-child {
    margin-bottom: 0;
}

.legal-content h2 {
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ec4899;
}

.legal-content p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 0;
}

.contact-info {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-page {
    margin: 2rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info-section {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.contact-form textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #6b7280;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .rating-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group,
    .radio-group {
        gap: 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .nav ul {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .newsletter-form,
    .newsletter-form-detailed,
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

/* Smooth scrolling for internal links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ec4899;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-button,
    .submit-button,
    .submit-button-large {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}