       :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --success: #27ae60;
            --warning: #f39c12;
            --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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

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

        /* Header & Navigation */
        header {
            background-color: white;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span{
            color: rgba(23, 28, 28, 0.604);
        }

        .logo i {
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color:black;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
            display: flex;
            text-align: justify;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid var(--secondary);
        }

        .cta-button:hover {
            background-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            
        }

        .main_card{
            display: flex;
            gap: 20px;
        }
        .card{
            height: 26vh;
            width: 25%;
            background-color: turquoise;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 4px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            padding: 10px;
            gap: 5px;
        }

        .card .fas{
            height: 60px;
            width: 34%;
            border-radius: 30px;
            background-color: #0cca5b;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .card h4{
            font-weight: normal;
            font-weight: 700;
        }

        .card span{
           display: flex;
           text-align: justify;
        }

         .card-info{
            height: 26vh;
            width: 25%;
            background-color: darkorange;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 4px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            padding: 10px;
            gap: 5px;
        }

        .card-info .fas{
            height: 60px;
            width: 34%;
            border-radius: 30px;
            background-color: white;
            color: darkorange;
            font-size: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .card-info span{
            display: flex;
           text-align: justify;
        }

        .card-informa{
            height: 26vh;
            width: 25%;
            background-color: darkcyan;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 4px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            padding: 10px;
            gap: 5px;
        }

        .card-informa .fas{
            height: 60px;
            width: 34%;
            border-radius: 30px;
            background-color: #27ae60;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .card-informa{
           display: flex;
           text-align: justify;
        }

        /* Section Styling */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Strategy Cards */
        .strategies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .strategy-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

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

        .card-header {
            background-color: var(--primary);
            color: white;
            padding: 1.5rem;
        }

        .card-header h3 {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .card-content {
            padding: 1.5rem;
        }

        .card-content ul {
            list-style-type: none;
            margin-top: 1rem;
        }

        .card-content ul li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .card-content ul li:last-child {
            border-bottom: none;
        }

        .card-content ul li i {
            color: var(--secondary);
            margin-right: 10px;
        }

        /* Framework Section */
        .framework-container {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }

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

        .framework-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: 8px;
            transition: var(--transition);
        }

        .framework-item p{
            display: flex;
            text-align: justify;
            white-space: normal;   /* default, allows normal wrapping */
            word-spacing: 0;       /* removes extra word spacing */
            letter-spacing: normal;
        }

        .framework-item:hover {
            background-color: #f8f9fa;
        }

        .framework-icon {
            background-color: var(--light);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--primary);
            font-size: 1.8rem;
        }

        /* Action Plan */
        .action-plan {
            counter-reset: step-counter;
        }

        .step {
            display: flex;
            margin-bottom: 2rem;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .step-number {
            background-color: var(--primary);
            color: white;
            min-width: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .step-content {
            padding: 1.5rem;
            flex: 1;
        }

        .step-content h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        /* Trends Section */
        .trends-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .trend-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 5px solid var(--secondary);
        }

        .trend-card:hover {
            transform: translateY(-5px);
        }

        .trend-card h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* Tabs Section */
        .tabs {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-top: 2rem;
        }

        .tab-headers {
            display: flex;
            background-color: var(--light);
            border-bottom: 1px solid #ddd;
        }

        .tab-header {
            padding: 1rem 2rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark);
            transition: var(--transition);
            flex: 1;
            text-align: center;
        }

        .tab-header.active {
            background-color: white;
            color: var(--secondary);
            border-bottom: 3px solid var(--secondary);
        }

        .tab-content {
            padding: 2rem;
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 4rem 0 2rem;
        }

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

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

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

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

        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 1rem;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

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

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .strategies-grid, .trends-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 0 0 1rem 0;
            }

            .hero {
                padding: 4rem 0;
            }

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

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

            .tab-headers {
                flex-direction: column;
            }

            .step {
                flex-direction: column;
            }

            .step-number {
                min-height: 60px;
                min-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .strategies-grid, .trends-grid, .framework-grid {
                grid-template-columns: 1fr;
            }
        }