/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 80px;
    height: 80px;
}

.logo-text h1 {
    font-size: 2rem;
    color: #e91e8c;
    margin: 0;
}

.logo-text p {
    font-size: 1.1rem;
    color: #4fc3f7;
    margin: 0;
}

/* Navigation Styles */
.main-nav {
    background: linear-gradient(to bottom, #4fc3f7, #29b6f6);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav .container {
    padding: 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.main-nav li {
    flex: 1;
    min-width: 150px;
}

.main-nav a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-overlay h2 {
    color: #fff;
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 3px;
}

/* Content Sections */
.content-section {
    margin: 40px 0;
    padding: 20px 0;
}

.content-section h2 {
    color: #e91e8c;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #4fc3f7;
    padding-bottom: 10px;
}

.content-flex {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

.content-flex.reverse {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
    max-width: 45%;
}

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

.content-text {
    flex: 1;
}

.content-text p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 10px;
}

.benefits-section h2 {
    color: #e91e8c;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    border: none;
}

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

.benefit-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card h3 {
    color: #4fc3f7;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

/* Footer Styles */
.site-footer {
    background: linear-gradient(to bottom, #333, #222);
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    color: #4fc3f7;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #4fc3f7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #4fc3f7;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-flex,
    .content-flex.reverse {
        flex-direction: column;
    }

    .content-image {
        max-width: 100%;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        width: 100%;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-overlay h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid #4fc3f7;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .main-nav,
    .site-footer {
        display: none;
    }
}