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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-size: 18px;
}

/* High contrast and accessibility */
h1, h2, h3 {
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

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

/* Hero section */
.hero {
    background: url('uofa.png') no-repeat center center;
    background-size: cover;
    color: #333;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cta-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 1rem;
    color: #ffffff;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.download-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.download-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.download-note {
    font-size: 1rem;
    color: #ffffff;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Hero Image */
.hero-image {
    text-align: center;
}

.header-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}



/* Main content sections */
main {
    padding: 4rem 0;
}

section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

/* What You Get Section */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.content-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.content-item h3 {
    margin-bottom: 1rem;
    color: #000000;
}

/* Why Important Section */
.importance-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.importance-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #333;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #000000;
    margin-bottom: 2rem;
}

.social-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    background: #f8f9fa;
    color: #333;
    border-top: 1px solid #e9ecef;
}

.final-cta h2 {
    color: #000000;
    margin-bottom: 1rem;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: #000000;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
}

.final-cta-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .importance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    p { font-size: 1.1rem; }
}

/* High contrast focus states for accessibility */
.cta-button:focus,
.final-cta-button:focus {
    outline: 4px solid #000000;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero,
    .final-cta {
        background: white !important;
        color: black !important;
    }
    
    .cta-button,
    .final-cta-button {
        display: none;
    }
}
