:root {
    --primary-color: #2e8b57;
    --primary-dark: #1e6e4a;
    --secondary-color: #3cb371;
    --dark-color: #2c3e50;
    --light-color: #f5f7fa;
    --gray-color: #95a5a6;
    --white: #ffffff;
    --black: #333333;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

.green {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header.scrolled {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

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

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text {


    color: var(--dark-color);
}
.logo-text {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-bottom: 9px;
    font-weight: 500;
    /* text-transform: uppercase; */
    letter-spacing: 0px;
    text-align: left;
    position: relative;
    display: inline-block;
}
.nav-links {
    display: flex;
    justify-content: center; /* This ensures the links are in a row and centered */
    align-items: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    color: white;
    background: linear-gradient(135deg, #1e3c1e 0%, #2e8b57 50%, #3cb371 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-top: 40px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

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

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.objectives {
    margin-top: 50px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
}

.objectives h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.objectives ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.objectives li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--dark-color);
}

.objectives li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Criteria Section */
.criteria {
    padding: 100px 0;
    background-color: var(--light-color);
}

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

.criteria-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.criteria-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.criteria-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(46, 139, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
}

.criteria-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.points {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.criteria-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Levels Section */
.levels {
    padding: 100px 0;
    background-color: var(--white);
}

.levels-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    justify-content: center;
}

.level {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--box-shadow);
    opacity: 0.9;
    transition: var(--transition);
}

.level:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.level-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.level-range {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.level-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.platinum {
    background: linear-gradient(135deg, #e5e4e2, #b4b2af);
}

.gold {
    background: linear-gradient(135deg, #ffd700, #daa520);
}

.silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

.certified {
    background: linear-gradient(135deg, #cd7f32, #b87333);
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--light-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-step {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.timeline-step:nth-child(odd) {
    left: 0;
}

.timeline-step:nth-child(even) {
    left: 50%;
}

.step-number {
    position: absolute;
    top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 0 5px rgba(46, 139, 87, 0.2);
}

.timeline-step:nth-child(odd) .step-number {
    right: -20px;
}

.timeline-step:nth-child(even) .step-number {
    left: -20px;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--gray-color);
}

/* Modules Section */
.modules {
    padding: 100px 0;
    background-color: var(--white);
}

.modules-accordion {
    max-width: 900px;
    margin: 50px auto 0;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-btn {
    width: 100%;
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-btn:hover {
    background-color: var(--primary-dark);
}

.accordion-btn i {
    transition: var(--transition);
}

.accordion-btn.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.accordion-content.show {
    padding: 20px;
    max-height: 1000px;
}

.accordion-content p {
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.6;
}

.accordion-content ul {
    list-style-type: none;
    margin-top: 15px;
}

.accordion-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.accordion-content li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('cta-bg.jpg');
    background-size: cover;
    background-position: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 2;
    min-width: 300px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-logo h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 1.5;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--gray-color);
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Animations */
.animate-from-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-from-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-from-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        width: 100%;
    }
    
    .timeline-step {
        width: 100%;
        left: 0 !important;
    }
    
    .timeline-step:nth-child(even) .step-number {
        left: auto;
        right: -20px;
    }
    
    .timeline::before {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .levels-container {
        flex-direction: column;
    }

    .level {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo img {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .title-line {
        display: block;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-content {
        gap: 30px;
    }

    .accordion-btn {
        padding: 15px;
        font-size: 1rem;
    }

    .footer-logo img {
        height: 60px;
    }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Print Styles */
@media print {
    body {
        background: none;
        color: black;
        font-size: 12pt;
    }

    .container {
        width: 100%;
        padding: 0;
    }

    header, footer, .cta, .btn {
        display: none;
    }

    .section-title::after {
        display: none;
    }

    .about-content, .criteria-grid, .levels-container, .footer-content {
        display: block;
    }

    .animate-from-left, .animate-from-right, .animate-from-bottom {
        opacity: 1;
        transform: none;
    }

    .accordion-content {
        max-height: none !important;
        display: block !important;
    }

    .accordion-btn i {
        display: none;
    }

    .criteria-card, .level {
        break-inside: avoid;
        margin-bottom: 20px;
    }

    .timeline-step {
        margin-bottom: 20px;
    }
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Add this to your CSS file */
.eco-hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    color: white;
}

.eco-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c1e 0%, #2e8b57 50%, #3cb371 100%);
    z-index: 1;
    opacity: 0.9;
}

.eco-hero-decoration {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45%;
    background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 2;
}

.eco-hero-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(44, 138, 74, 0.8) 0%, transparent 100%);
}

.eco-hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0;
    max-width: 55%;
}

.eco-hero-nav {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.eco-hero-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.eco-hero-nav a:hover {
    opacity: 0.8;
}

.eco-hero-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.eco-hero-nav a:hover::after {
    width: 100%;
}

.eco-signup {
    margin-left: auto;
    font-weight: 600 !important;
}

.eco-hero-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.eco-hero-subheading {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.eco-hero-description {
    max-width: 500px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.eco-hero-cta {
    display: inline-block;
    padding: 15px 35px;
    background-color: white;
    color: #2c8a4a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.eco-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: white;
    color: #2c8a4a;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .eco-hero {
        height: auto;
        padding-bottom: 60px;
    }
    
    .eco-hero-content {
        max-width: 100%;
        padding: 100px 0 60px;
    }
    
    .eco-hero-decoration {
        width: 100%;
        opacity: 0.3;
    }
    
    .eco-hero-heading {
        font-size: 36px;
    }
    
    .eco-hero-subheading {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .eco-hero-nav {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .eco-signup {
        margin-left: 0;
    }
    
    .eco-hero-heading {
        font-size: 32px;
    }
    
    .eco-hero-subheading {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .eco-hero-content {
        padding: 80px 0 40px;
    }
    
    .eco-hero-heading {
        font-size: 28px;
    }
    
    .eco-hero-subheading {
        font-size: 18px;
    }
    
    .eco-hero-decoration {
        display: none;
    }
}
.logo {
    font-size: 1rem;
    font-weight: 700;
    color: green;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    text-decoration: none;
    letter-spacing: -1px;
    text-align: center;
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}


.logo-part1 {
    color: var(--white);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
}

.logo-part2 {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    display: block;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .logo-text {
        font-size: 3.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .logo-text {
        font-size: 3rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}
       