
        /* ====== Global Styles & Variables ====== */
        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --success: #27ae60;
            --warning: #f39c12;
            --text: #333;
            --text-light: #7f8c8d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* ====== Base Styles ====== */
        body {
            color: var(--text);
            line-height: 1.6;
            background-color: #f5f7fa;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ====== Header & Navigation ====== */
        header {
            background: var(--primary);
            color: white;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.8rem;
            margin-left: 10px;
        }

        .logo-icon {
            font-size: 1.8rem;
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 1.5rem;
        }

        nav ul li a {
            color: rgb(255, 255, 255);
            text-decoration: none;
            font-weight: 100;
            transition: all 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* ====== Hamburger Menu Styles ====== */
        .hamburger {
            display: none;
            padding: 10px;
            background: none;
            border: none;
            cursor: pointer;
            outline: none;
            z-index: 1001;
        }

        .hamburger-box {
            width: 30px;
            height: 24px;
            display: inline-block;
            position: relative;
        }

        .hamburger-inner {
            display: block;
            top: 50%;
            margin-top: -2px;
        }

        .hamburger-inner,
        .hamburger-inner::before,
        .hamburger-inner::after {
            width: 30px;
            height: 3px;
            background-color: white;
            border-radius: 4px;
            position: absolute;
            transition: transform 0.15s ease;
        }

        .hamburger-inner::before,
        .hamburger-inner::after {
            content: "";
            display: block;
        }

        .hamburger-inner::before {
            top: -10px;
        }

        .hamburger-inner::after {
            bottom: -10px;
        }

        /* Active state - transforms into X */
        .hamburger.is-active .hamburger-inner {
            transform: rotate(45deg);
        }

        .hamburger.is-active .hamburger-inner::before {
            transform: rotate(-90deg) translate3d(-10px, 0, 0);
            top: 0;
        }

        .hamburger.is-active .hamburger-inner::after {
            transform: rotate(90deg);
            bottom: 0;
            opacity: 0;
        }

        /* Mobile navigation styles */
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }

            nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--primary);
                padding: 80px 20px 20px;
                transition: left 0.3s ease;
                z-index: 1000;
                box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 15px 0;
            }

            nav ul li a {
                font-size: 1.1rem;
                padding: 8px 0;
                display: block;
            }

            /* Overlay when menu is open */
            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.5);
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }

        /* ====== Main Content ====== */
        main {
            margin-top: 80px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
            margin: 80px auto 20px;
            overflow: hidden;
            max-width: 1400px;
            width: 95%;
            position: relative;
            transition: transform 0.3s ease;
        }

        @media (max-width: 768px) {
            nav.active + main {
                transform: translateX(80%);
            }
        }

        /* ====== Hero Section ====== */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* ====== Buttons ====== */
        .btn {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-weight: 500;
        }

        .btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-accent {
            background: var(--accent);
        }

        .btn-accent:hover {
            background: #c0392b;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }

        /* ====== Section Styles ====== */
        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* ====== Features Section ====== */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* ====== Financial Milestones Section ====== */
        .milestones {
            background-color: var(--light);
        }

        .milestones-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .milestone-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border-left: 4px solid var(--secondary);
        }

        .milestone-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left-color: var(--accent);
        }

        .milestone-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .milestone-card p {
            color: var(--text);
            margin-bottom: 1.5rem;
        }

        .milestone-progress {
            height: 8px;
            background: #ecf0f1;
            border-radius: 4px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .milestone-progress-bar {
            height: 100%;
            background: var(--secondary);
            border-radius: 4px;
            transition: width 1s ease;
        }

        .milestone-info {
            display: flex;
            justify-content: space-between;
            color: var(--primary);
            font-size: 0.9rem;
        }

        /* ====== Financial Tips Section ====== */
        .tips-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .financial-tip {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border-top: 3px solid transparent;
        }

        .financial-tip:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-top-color: var(--accent);
        }

        .financial-tip h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .financial-tip p {
            color: var(--text);
            margin-bottom: 1rem;
        }

        /* ====== Tools Section ====== */
        .tools-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .tool-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            cursor: pointer;
            text-align: center;
            border-top: 4px solid var(--secondary);
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-top-color: var(--accent);
        }

        .tool-card i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .tool-card h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        /* ====== Currency Selector ====== */
        .currency-selector {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            align-items: center;
        }

        .currency-selector label {
            margin-right: 10px;
            font-weight: 500;
        }

        .currency-selector select {
            padding: 0.5rem 1rem;
            border-radius: 5px;
            border: 1px solid #ddd;
            background: white;
            font-size: 1rem;
            cursor: pointer;
        }

        /* ====== Newsletter ====== */
        .newsletter {
            background: var(--primary);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            border-radius: 10px;
            margin: 3rem auto;
            max-width: 800px;
            width: 90%;
        }

        .newsletter h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .newsletter p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
            width: 100%;
        }

        .newsletter-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            background: #c0392b;
        }

        /* ====== Footer ====== */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1.5rem;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 2rem;
            text-align: left;
        }

        .footer-column h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background: var(--secondary);
            bottom: -5px;
            left: 0;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: var(--secondary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
        }

        /* ====== Responsive Styles ====== */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 4.4rem;
            }

            .hero p {
                font-size: 2.3rem;
            }

            section {
                padding: 3rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }

            .logo h1 {
                font-size: 1.5rem;
            }

            .hero {
                padding: 4rem 1.5rem;
            }

            .hero h2 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }

            .section-title h2 {
                font-size: 1.6rem;
            }

            .features,
            .milestones-container,
            .tips-container,
            .tools-container {
                grid-template-columns: 1fr;
            }

            .feature-card,
            .milestone-card,
            .financial-tip,
            .tool-card {
                padding: 1.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: 5px;
                margin-bottom: 0.5rem;
                width: 100%;
            }

            .newsletter-form button {
                border-radius: 5px;
                padding: 0.8rem;
                width: 100%;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 3rem 1rem;
            }

            .hero h2 {
                font-size: 1.6rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            section {
                padding: 2rem 1rem;
            }

            .section-title h2 {
                font-size: 1.4rem;
            }
        }