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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #333;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* ============================================
    TOP BAR (for social icons)
    ============================================ */
    .topbar {
        background: #f8f9fa;
        padding: 0.5rem 2rem;
        text-align: right;
        border-bottom: 1px solid #e0e0e0;
    }

    /* Header & Navigation */
    header {
        background: white;
        border-bottom: 1px solid #e0e0e0;
        padding: 1rem 2rem;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    nav.nav-center {
        justify-content: center;
    }

    nav.nav-left {
        justify-content: flex-start;
    }

    nav.nav-right {
        justify-content: flex-end;
    }

    /* Logo Section with Social Icons */
    .nav-logo-section {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-logo {
        font-size: 1rem;  # ✅ ADD THIS
        font-weight: 700;
        color: #011b2d;
    }

    .nav-logo a {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* logo image*/

    /* ============================================ */
    /* LOGO IMAGE STYLES */
    /* ============================================ */
    .nav-logo-img {
        max-height: 50px;
        max-width: 200px;
        height: auto;
        width: auto;
        object-fit: contain;
        vertical-align: middle;
        margin-right: 10px;
        display: inline-block;
    }

    /* Responsive sizing */
    @media (max-width: 768px) {
        .nav-logo-img {
            max-height: 40px;
            max-width: 160px;
        }
    }

    @media (max-width: 480px) {
        .nav-logo-img {
            max-height: 32px;
            max-width: 120px;
        }
    }

    /* Smooth hover effect */
    .nav-logo a:hover .nav-logo-img {
        opacity: 0.85;
        transition: opacity 0.3s ease;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
    }

    .nav-menu a {
        text-decoration: none;
        color: #333;
        transition: color 0.2s;
        font-weight: 500;
    }

    .nav-menu a:hover {
        color: #011b2d;
    }

    .nav-dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        background: white;
        min-width: 280px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        list-style: none;
        padding: 0.3rem 0;
        top: 100%;
        left: 0;
        border-radius: 6px;
        z-index: 1000;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 0;
        text-transform: capitalize;
    }

    .dropdown-menu li a {
        display: block;
        padding: 0.30rem .40rem;
        color: #333;
        font-weight: 400;
    }

    .dropdown-menu li a:hover {
        background: #f5f5f5;
        color: #011b2d;
    }

    .dropdown-header {
        font-weight: 500;
        color: #011b2d;
        padding: 0.30rem .40rem;
        font-size: 0.7rem;
        text-transform: capitalize;
        letter-spacing: 0.5px;
    }

    /* Nav Social Icons (in menu) */
    .nav-social {
        margin-left: auto;
    }

    /* ============================================
    SOCIAL ICONS STYLES
    ============================================ */

    /* Social Icons Container */
    .social-icons {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .social-icons-topbar,
    .social-icons-footer {
        justify-content: center;
    }

    .social-icons-nav {
        gap: 0.75rem;
    }

    .social-icons-beside-logo {
        margin-left: 1rem;
    }

    /* Font Awesome Style */
    .social-icons-fontawesome a {
        color: #333;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .social-icons-fontawesome a:hover {
        color: #011b2d;
    }

    /* Text Links Style */
    .social-icons-text a {
        color: #333;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

    .social-icons-text a:hover {
        color: #011b2d;
    }

    .social-separator {
        color: #999;
    }

    /* Colored Buttons Style */
    .social-icons-buttons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        color: white;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .social-icons-buttons a:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    /* Footer Social Icons Spacing */
    .footer-column .social-icons {
        margin-top: 1rem;
    }

    /* Main Content */
    main {
        min-height: 60vh;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, #011b2d, #003315);
        color: white;
        padding: 5rem 2rem;
        text-align: center;
        margin-bottom: 4rem;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.2rem;
        font-weight: 700;
        line-height: 1.1;
    }

    .hero-paragraph {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.6;
        opacity: 0.95;
    }

    .btn-cta {
        display: inline-block;
        background: white;
        color: #011b2d;
        padding: 1rem 2.5rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        margin-top: 1.5rem;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .btn-cta-large {
        display: inline-block;
        background: #011b2d;
        color: white;
        padding: 1.25rem 3rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .btn-cta-large:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        opacity: 0.9;
    }

    .btn-cta-secondary {
        display: inline-block;
        background: transparent;
        color: #011b2d;
        padding: 1.25rem 3rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.2rem;
        border: 2px solid #011b2d;
        transition: all 0.3s ease;
        margin-left: 1rem;
    }

    .btn-cta-secondary:hover {
        background: #011b2d;
        color: white;
    }

    /* Services Grid */
    .services {
        padding: 4rem 0;
        background: #f8f9fa;
    }

    .services h2 {
        text-align: center;
        margin-bottom: 3rem;
        color: #011b2d;
        font-size: 2.5rem;
    }

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

    .service-card {
        background: white;
        padding: 2rem;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }

    .service-card:hover {
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

    .service-card h3 {
        color: #003315;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .service-card p {
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .btn-link {
        color: #011b2d;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: gap 0.3s ease;
    }

    .btn-link:hover {
        gap: 0.5rem;
    }

    /* Value Proposition */
    .value-proposition {
        padding: 4rem 2rem;
        text-align: center;
    }

    .value-proposition h2 {
        color: #011b2d;
        margin-bottom: 1.5rem;
        font-size: 2.5rem;
    }

    .value-proposition p {
        font-size: 1.2rem;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
        color: #555;
    }

    /* Why Choose Us */
    .why-choose-us {
        padding: 4rem 2rem;
        background: white;
    }

    .why-choose-us h2 {
        text-align: center;
        color: #011b2d;
        margin-bottom: 3rem;
        font-size: 2.5rem;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .why-point {
        padding: 2rem;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
        border-left: 4px solid #3d0600;
    }

    .why-point:hover {
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .why-point h3 {
        color: #003315;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .why-point p {
        color: #666;
        line-height: 1.7;
    }

    /* Related Sections */
    .related-section {
        padding: 3rem 2rem;
    }

    .related-section h2 {
        color: #011b2d;
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }

    .related-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .related-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 1rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, #011b2d15, #00331515);
        text-align: center;
    }

    .final-cta h2 {
        color: #011b2d;
        margin-bottom: 1.5rem;
        font-size: 2.5rem;
    }

    .final-cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        color: #555;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Service Page */
    .service-page {
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem;
    }

    .service-page h1 {
        color: #011b2d;
        margin-bottom: 2rem;
        font-size: 2.5rem;
    }

    .service-page h2 {
        color: #003315;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .service-page p {
        line-height: 1.8;
        margin-bottom: 1.25rem;
        color: #555;
        font-size: 1.1rem;
    }

    .service-page ul {
        margin: 1.5rem 0 1.5rem 2rem;
        line-height: 1.8;
    }

    .service-page ul li {
        margin-bottom: 0.75rem;
        color: #555;
    }

    .service-section {
        margin: 3rem 0;
        padding: 2rem 0;
        border-top: 1px solid #e0e0e0;
    }

    .related-link {
        display: inline-block;
        margin-top: 1rem;
        color: #011b2d;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .related-link:hover {
        text-decoration: underline;
    }

    .related-articles {
        margin-top: 4rem;
        padding: 2rem;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .related-articles h2 {
        color: #011b2d;
        margin-bottom: 2rem;
    }

    .blog-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .blog-card {
        background: white;
        padding: 1.5rem;
        border-radius: 6px;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }

    .blog-card:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transform: translateY(-3px);
    }

    .blog-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .blog-card h3 a {
        color: #003315;
        text-decoration: none;
    }

    .blog-card h3 a:hover {
        color: #011b2d;
    }

    .blog-card p {
        color: #666;
        font-size: 0.95rem;
    }

    /* Blog Post */
    .blog-post {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
    }

    .blog-post h1 {
        color: #011b2d;
        margin-bottom: 1.5rem;
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .blog-post h2 {
        color: #003315;
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
        font-size: 1.8rem;
    }

    .blog-post p {
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #555;
        font-size: 1.1rem;
    }

    .blog-hook {
        font-size: 1.25rem;
        color: #003315;
        margin-bottom: 2rem;
        padding-left: 1.5rem;
        border-left: 4px solid #011b2d;
        font-weight: 500;
        font-style: italic;
    }

    .blog-cta {
        background: #f8f9fa;
        padding: 2rem;
        border-radius: 8px;
        margin-top: 3rem;
        font-size: 1.1rem;
        border-left: 4px solid #3d0600;
    }

    .back-to-service {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #e0e0e0;
    }

    .back-to-service a {
        color: #011b2d;
        text-decoration: none;
        font-weight: 600;
    }

    .back-to-service a:hover {
        text-decoration: underline;
    }

    /* About & Contact Pages */
    .about-page,
    .contact-page {
        max-width: 900px;
        margin: 0 auto;
        padding: 3rem 2rem;
    }

    .about-page h1,
    .contact-page h1 {
        color: #011b2d;
        margin-bottom: 2rem;
        font-size: 2.5rem;
    }

    .about-page p,
    .contact-page p {
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #555;
        font-size: 1.1rem;
    }

    .contact-info {
        background: #f8f9fa;
        padding: 2rem;
        border-radius: 8px;
        margin: 2rem 0;
    }

    .contact-info p {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .contact-info i {
        color: #011b2d;
        width: 20px;
    }

    /* Contact Form */
    .contact-form {
        max-width: 600px;
        margin: 2rem auto;
        background: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #333;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #011b2d;
    }

    .btn-submit {
        background: #011b2d;
        color: white;
        padding: 1rem 2.5rem;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

    /* Legal Pages */
    .legal-page {
        max-width: 900px;
        margin: 0 auto;
        padding: 3rem 2rem;
        background: white;
    }

    .legal-page h1 {
        color: #011b2d;
        margin-bottom: 0.5rem;
        font-size: 2.5rem;
    }

    .legal-page .last-updated {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 2.5rem;
        display: block;
        font-size: 0.95rem;
    }

    .legal-page h2 {
        color: #003315;
        margin-top: 3rem;
        margin-bottom: 1.25rem;
        font-size: 1.8rem;
    }

    .legal-page p {
        margin-bottom: 1.25rem;
        line-height: 1.8;
        color: #555;
        font-size: 1.05rem;
    }

    .legal-page ul {
        margin: 1.5rem 0 1.5rem 2rem;
        line-height: 1.8;
    }

    .legal-page ul li {
        margin-bottom: 0.75rem;
        color: #555;
    }

    .legal-page strong {
        color: #011b2d;
        font-weight: 600;
    }

    /* Breadcrumb */
    .breadcrumb {
        margin-bottom: 2rem;
        padding: 1rem 0;
        color: #7f8c8d;
        font-size: 0.95rem;
    }

    .breadcrumb a {
        color: #011b2d;
        text-decoration: none;
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    /* Footer */
    footer {
        background: #2c3e50;
        color: white;
        padding: 3rem 2rem 1rem;
        margin-top: 5rem;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        gap: 2rem;
    }

    .footer-standard .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer-full .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-minimal .footer-content {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-column h4 {
        margin-bottom: 1rem;
        color: #3d0600;
        font-size: 1.1rem;
    }

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

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

    .footer-column a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-column a:hover {
        color: white;
    }

    .footer-column p {
        color: #bdc3c7;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        color: #bdc3c7;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .topbar {
            text-align: center;
            padding: 0.5rem 1rem;
        }
        
        .social-icons-beside-logo {
            display: none;
        }
        
        .nav-logo-section {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .nav-menu {
            flex-direction: column;
            gap: 1rem;
        }
        
        .hero {
            padding: 3rem 1.5rem;
        }
        
        .hero h1 {
            font-size: 2rem;
        }
        
        .hero-paragraph {
            font-size: 1rem;
        }
        
        .services {
            padding: 3rem 0;
        }
        
        .services h2 {
            font-size: 2rem;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .why-grid {
            grid-template-columns: 1fr;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
        }
        
        .legal-page {
            padding: 1.5rem;
        }
        
        .legal-page h1 {
            font-size: 2rem;
        }
        
        .legal-page h2 {
            font-size: 1.5rem;
        }
        
        .blog-list {
            grid-template-columns: 1fr;
        }
        
        .cta-buttons {
            flex-direction: column;
        }
        
        .btn-cta-secondary {
            margin-left: 0;
            margin-top: 1rem;
        }
    }

    /* ========================================
    IMAGE PLACEMENT STYLES
    ======================================== */

    /* Hero Image Layouts */
    .hero-layout-single .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.3;
        z-index: 0;
    }

    .hero-layout-single .hero-content {
        position: relative;
        z-index: 1;
    }

    .hero-layout-two_column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        text-align: left;
    }

    .hero-layout-two_column .hero-img-side {
        width: 100%;
        height: auto;
        border-radius: 8px;
        order: 2;
    }

    .hero-layout-three_column .hero-img-top,
    .hero-layout-mixed .hero-img-top {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    /* Service Page Image Layouts */
    .service-layout-single .service-img-full {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    .service-layout-two_column .service-page {
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 3rem;
    }

    .service-layout-two_column .service-img-left {
        width: 100%;
        height: fit-content;
        border-radius: 8px;
        position: sticky;
        top: 100px;
    }

    .service-layout-three_column .service-img-top,
    .service-layout-mixed .service-img-top {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    /* Blog Featured Image Layouts */
    .blog-layout-single .blog-featured-img-full {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    .blog-layout-two_column .blog-post {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 3rem;
    }

    .blog-layout-two_column .blog-featured-img-side {
        width: 100%;
        height: fit-content;
        border-radius: 8px;
        position: sticky;
        top: 100px;
    }

    .blog-layout-three_column .blog-featured-img-top,
    .blog-layout-mixed .blog-featured-img-top {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    /* About Page Image Layouts */
    .about-layout-single .about-img-full {
        max-height: 500px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    .about-layout-two_column .about-page {
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 3rem;
    }

    .about-layout-two_column .about-img-side {
        width: 100%;
        height: fit-content;
        border-radius: 8px;
    }

    .about-layout-three_column .about-img-top,
    .about-layout-mixed .about-img-top {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    /* Responsive - Stack images on mobile */
    @media (max-width: 768px) {
        .hero-layout-two_column,
        .service-layout-two_column .service-page,
        .blog-layout-two_column .blog-post,
        .about-layout-two_column .about-page {
            grid-template-columns: 1fr;
        }
        
        .hero-layout-two_column .hero-img-side {
            order: 1;
            margin-bottom: 2rem;
        }
        
        .service-layout-two_column .service-img-left,
        .blog-layout-two_column .blog-featured-img-side,
        .about-layout-two_column .about-img-side {
            position: static;
            margin-bottom: 2rem;
        }
    }

    