        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            /* Afri Soko Connect Color Palette */
            --confetti: #e5c757;
            --marigold: #c49630;
            --celtic: #142e18;
            --sun: #f8af18;
            --crete: #5a742c;
            --kumera: #90641e;
            --teak: #a9a55c;
            --seaweed: #2f4215;
            --bronze-olive: #603e0e;
            --light-cream: #fef9ec;
            --light-green: #f1f7e9;
            --transition: all 0.3s ease;
        }

        body {
            background-color: var(--light-cream);
            color: var(--celtic);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .navbar {
            background: linear-gradient(135deg, var(--celtic) 0%, var(--seaweed) 100%);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(20, 46, 24, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--confetti);
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 100;
            color: var(--confetti);
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-main {
            font-size: 1.8rem;
        }

        .logo-tagline {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--teak);
            font-style: italic;
            margin-top: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--sun);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--sun);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background-color: var(--sun);
            color: var(--celtic);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: 2px solid var(--sun);
        }

        .nav-cta:hover {
            background-color: transparent;
            color: var(--sun);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(20, 46, 24, 0.9), rgba(47, 66, 21, 0.9)), 
                        url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?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;
            color: var(--confetti);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--teak);
            font-style: italic;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-cta {
            display: inline-block;
            background: var(--sun);
            color: var(--celtic);
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid var(--sun);
            margin: 0 0.5rem;
        }

        .hero-cta:hover {
            background: transparent;
            color: var(--sun);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(248, 175, 24, 0.2);
        }

        .hero-cta.secondary {
            background: transparent;
            color: var(--sun);
            border-color: var(--sun);
        }

        .hero-cta.secondary:hover {
            background: var(--sun);
            color: var(--celtic);
        }

        /* Packages Preview Section */
        .packages-preview {
            padding: 5rem 0;
            background-color: var(--light-green);
        }

        .section-title {
            text-align: center;
            color: var(--seaweed);
            margin-bottom: 1rem;
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--sun);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--bronze-olive);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 2rem auto 3rem;
        }

        .packages-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .package-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(20, 46, 24, 0.1);
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            transition: var(--transition);
            border-top: 6px solid var(--crete);
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(20, 46, 24, 0.15);
        }

        .package-card.popular {
            border-top: 6px solid var(--sun);
            transform: scale(1.02);
        }

        .package-card.popular::before {
            content: "MOST POPULAR";
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--sun);
            color: var(--celtic);
            padding: 8px 30px;
            font-size: 0.8rem;
            font-weight: 700;
            transform: rotate(45deg);
            z-index: 10;
            box-shadow: 0 3px 8px rgba(144, 100, 30, 0.3);
        }

        .package-header {
            padding: 2rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .package-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%);
            z-index: 1;
        }

        .package-1 .package-header {
            background: linear-gradient(135deg, var(--crete) 0%, var(--seaweed) 100%);
        }

        .package-2 .package-header {
            background: linear-gradient(135deg, var(--kumera) 0%, var(--bronze-olive) 100%);
        }

        .package-3 .package-header {
            background: linear-gradient(135deg, var(--celtic) 0%, #1e4023 100%);
        }

        .package-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .package-price {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }

        .package-price span {
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.9;
        }

        .package-for {
            font-size: 0.95rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
            font-style: italic;
        }

        .package-features {
            padding: 2rem;
        }

        .feature-title {
            color: var(--seaweed);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            border-bottom: 2px solid var(--light-green);
            padding-bottom: 0.5rem;
            font-weight: 600;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .feature-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #e8e8e8;
            display: flex;
            align-items: flex-start;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li i {
            color: var(--sun);
            margin-right: 12px;
            margin-top: 3px;
            font-size: 1.1rem;
        }

        .package-cta {
            text-align: center;
            padding: 0 2rem 2rem;
        }

        .cta-button {
            display: inline-block;
            background: var(--crete);
            color: white;
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: 2px solid var(--crete);
            width: 100%;
            text-align: center;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            background: transparent;
            color: var(--crete);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(90, 116, 44, 0.2);
        }

        .package-2 .cta-button {
            background: var(--sun);
            border-color: var(--sun);
            color: var(--celtic);
        }

        .package-2 .cta-button:hover {
            background: transparent;
            color: var(--sun);
        }

        .view-all-packages {
            text-align: center;
            margin-top: 3rem;
        }

        .view-all-link {
            display: inline-block;
            color: var(--seaweed);
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 0.8rem 2rem;
            border: 2px solid var(--seaweed);
            border-radius: 50px;
            transition: var(--transition);
        }

        .view-all-link:hover {
            background-color: var(--seaweed);
            color: white;
            transform: translateY(-3px);
        }

        /* About Section */
        .about-section {
            padding: 5rem 0;
            background-color: white;
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-content {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(20, 46, 24, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            color: var(--seaweed);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: var(--bronze-olive);
            font-size: 1.1rem;
        }

        .stats-container {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--sun);
            display: block;
        }

        .stat-label {
            color: var(--seaweed);
            font-weight: 600;
        }

        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, var(--celtic) 0%, var(--seaweed) 100%);
            color: white;
            padding: 60px 0 30px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        footer::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url("../images/footerbg.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.18;
            z-index: 0;
            pointer-events: none;
        }

        /* Transparent Globe Map Overlay */
        .globe-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400' viewBox='0 0 800 400'%3E%3Ccircle cx='400' cy='200' r='180' fill='none' stroke='%23e5c757' stroke-width='1' stroke-opacity='0.3'/%3E%3Ccircle cx='400' cy='200' r='150' fill='none' stroke='%23f8af18' stroke-width='0.5' stroke-opacity='0.2'/%3E%3Ccircle cx='400' cy='200' r='120' fill='none' stroke='%23c49630' stroke-width='0.5' stroke-opacity='0.2'/%3E%3C/g%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
        }

        /* Animated globe rotation */
        @keyframes globeRotation {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .globe-overlay {
            animation: globeRotation 120s infinite linear;
        }

        /* Top decorative line */
        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--confetti), var(--sun), var(--marigold));
            z-index: 4;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: var(--confetti);
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--sun);
            border-radius: 2px;
        }

        /* Column 1: Brand Info */
        .footer-brand .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--confetti);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .footer-brand .logo i {
            margin-right: 10px;
            color: var(--sun);
        }

        .footer-brand .tagline {
            color: var(--teak);
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .footer-brand .description {
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
            line-height: 1.6;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        /* Column 2: Quick Links */
        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.95);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: var(--transition);
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .footer-links a:hover {
            color: var(--sun);
            transform: translateX(5px);
        }

        .footer-links a i {
            margin-right: 10px;
            color: var(--teak);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-links a:hover i {
            color: var(--sun);
        }

        /* Column 3: Contact Info */
        .footer-contact .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .footer-contact .contact-item i {
            color: var(--sun);
            margin-right: 12px;
            margin-top: 3px;
            font-size: 1.1rem;
            min-width: 20px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.4);
        }

        .footer-contact .contact-text {
            line-height: 1.5;
        }

        /* Column 4: Office Locations */
        .footer-offices .office {
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .footer-offices .office:last-child {
            margin-bottom: 0;
        }

        .footer-offices .office-title {
            color: var(--confetti);
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .footer-offices .office-title i {
            margin-right: 8px;
            color: var(--teak);
        }

        .footer-offices .office-address {
            font-size: 0.95rem;
            line-height: 1.5;
            padding-left: 24px;
        }

        /* Global Connection Animation Container */
        .global-connections {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        /* Animated connection lines - flowing outward from Africa */
        .connection-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, var(--sun), var(--confetti), transparent);
            transform-origin: left center;
            opacity: 0;
            animation-duration: 4s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        /* Africa center point */
        .africa-center {
            position: absolute;
            left: 45%;
            top: 55%;
            width: 12px;
            height: 12px;
            background-color: var(--sun);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(248, 175, 24, 0.8);
            z-index: 3;
        }

        .africa-center::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid rgba(248, 175, 24, 0.4);
            top: -8px;
            left: -8px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Different direction animations */
        @keyframes flowNorth {
            0% {
                opacity: 0;
                transform: rotate(-10deg) scaleX(0);
            }
            10% {
                opacity: 0.7;
            }
            80% {
                opacity: 0.7;
            }
            100% {
                opacity: 0;
                transform: rotate(-10deg) scaleX(1);
            }
        }

        @keyframes flowNorthEast {
            0% {
                opacity: 0;
                transform: rotate(30deg) scaleX(0);
            }
            10% {
                opacity: 0.7;
            }
            80% {
                opacity: 0.7;
            }
            100% {
                opacity: 0;
                transform: rotate(30deg) scaleX(1);
            }
        }

        @keyframes flowEast {
            0% {
                opacity: 0;
                transform: rotate(70deg) scaleX(0);
            }
            10% {
                opacity: 0.7;
            }
            80% {
                opacity: 0.7;
            }
            100% {
                opacity: 0;
                transform: rotate(70deg) scaleX(1);
            }
        }

        @keyframes flowSouthEast {
            0% {
                opacity: 0;
                transform: rotate(110deg) scaleX(0);
            }
            10% {
                opacity: 0.7;
            }
            80% {
                opacity: 0.7;
            }
            100% {
                opacity: 0;
                transform: rotate(110deg) scaleX(1);
            }
        }

        @keyframes flowSouth {
            0% {
                opacity: 0;
                transform: rotate(150deg) scaleX(0);
            }
            10% {
                opacity: 0.7;
            }
            80% {
                opacity: 0.7;
            }
            100% {
                opacity: 0;
                transform: rotate(150deg) scaleX(1);
            }
        }

        @keyframes flowSouthWest {
            0% {
                opacity: 0;
                transform: rotate(190deg) scaleX(0);
            }
            10% {
                opacity: 0.7;
            }
            80% {
                opacity: 0.7;
            }
            100% {
                opacity: 0;
                transform: rotate(190deg) scaleX(1);
            }
        }

        @keyframes flowWest {
            0% {
                opacity: 0;
                transform: rotate(230deg) scaleX(0);
            }
            10% {
                opacity: 0.7;
            }
            80% {
                opacity: 0.7;
            }
            100% {
                opacity: 0;
                transform: rotate(230deg) scaleX(1);
            }
        }

        @keyframes flowNorthWest {
            0% {
                opacity: 0;
                transform: rotate(270deg) scaleX(0);
            }
            10% {
                opacity: 0.7;
            }
            80% {
                opacity: 0.7;
            }
            100% {
                opacity: 0;
                transform: rotate(270deg) scaleX(1);
            }
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(229, 199, 87, 0.3);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .copyright {
            color: var(--teak);
            font-size: 0.9rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .social-links a:hover {
            background-color: var(--sun);
            color: var(--celtic);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(248, 175, 24, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-columns {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
            }
            
            .globe-overlay {
                opacity: 0.08;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .packages-container {
                flex-direction: column;
                align-items: center;
            }
            
            .package-card {
                max-width: 500px;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            footer::after {
                background-image: url("../images/footerbgmobile.png");
            }

            .footer-brand .tagline,
            .footer-brand .description {
                text-align: center;
            }

            .footer-columns {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 0;
            }
            
            .nav-logo-container {
                margin-bottom: 0.5rem;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-cta {
                display: block;
                margin: 1rem auto;
                width: 80%;
                max-width: 300px;
            }
            
            .stats-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .africa-center {
                left: 50%;
                top: 60%;
                transform: translateX(-50%);
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .logo-main {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                padding: 0 15px;
            }
            
            .footer-column h3 {
                font-size: 1.2rem;
            }
            
            .footer-brand .logo {
                font-size: 1.8rem;
            }
            
            .globe-overlay {
                opacity: 0.05;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .logo-img {
                width: 40px;
                height: 40px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .logo-main {
                font-size: 1.3rem;
            }
            
            .logo-tagline {
                font-size: 0.7rem;
            }
        }