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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4caf50;
}

h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #4caf50;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2e7d32;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #555;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.site-logo {
    max-width: 220px;
}

.logo-svg {
    height: 40px;
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #4caf50;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

.menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin-left: 2rem;
}

.nav-list li a {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: #444;
    padding: 0.5rem;
    position: relative;
}

.nav-list li a:not(.btn-nav):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4caf50;
    transition: width 0.3s ease;
}

.nav-list li a:not(.btn-nav):hover {
    color: #4caf50;
}

.nav-list li a:not(.btn-nav):hover:after {
    width: 100%;
}

.btn-nav {
    background-color: #ffd700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.btn-nav:hover {
    background-color: #ffeb3b;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f9fbe7 100%);
    position: relative;
}

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

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #4caf50, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #546e7a;
}

.hero-visual {
    flex: 1;
    max-width: 500px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

/* Featured Section */
.featured-section {
    padding: 6rem 0;
    background-color: #fff;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.featured-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: #f9fafb;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e0e0e0;
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #c8e6c9;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

/* Premium Section */
.premium-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.premium-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.premium-info {
    flex: 1;
}

.premium-info h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.premium-features {
    margin: 2rem 0;
}

.premium-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
}

.premium-visual {
    flex: 1;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #4caf50;
    border: 2px solid #4caf50;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #4caf50;
    color: white;
}

/* Join Section */
.join-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #ffd700, #ffeb3b);
}

.join-section h2 {
    color: #333;
}

.join-section p {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

/* Footer */
.site-footer {
    background-color: #2e7d32;
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 3rem;
}

.footer-svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: white;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffd700;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.footer-col ul li a:hover {
    color: #ffd700;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .premium-content {
        flex-direction: column-reverse;
    }
    
    .premium-info {
        text-align: center;
    }
    
    .premium-info h2 {
        text-align: center;
    }
    
    .premium-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background-color: white;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 1rem 0;
    }
    
    .footer-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-around;
    }
    
    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .featured-section,
    .premium-section {
        padding: 4rem 0;
    }
    
    .featured-grid {
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}
