    /* CSS Custom Properties for theming */
    :root {
        --primary: #FF6B00;
        --primary-rgb: 255, 107, 0;
        --primary-light: #FFE4D3;
        --primary-hover: #FF8533;
        --secondary: #003366;
        --text-dark: #333;
        --text-light: #666;
        --bg-light: #FFF9F5;
        --transition: 0.3s ease;
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
        --radius: 10px;
        --space-section: 5rem;
    }

    /* Base styles */
    body {
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 600;
        line-height: 1.3;
    }

    /* Layout */
    .section {
        padding: var(--space-section) 0;
    }

    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        background-color: white;
        padding: 0.5rem 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
        color: var(--primary-color) !important;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.2rem;
        line-height: 1.2;
        flex-wrap: wrap;
    }

    .navbar-brand img {
        height: 40px;
        width: auto;
        margin-right: 5px;
    }

    .nav-link {
        color: var(--text-dark) !important;
        font-weight: 500;
    }

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

    .navbar-toggler {
        border-color: var(--primary-color);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 107, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }


    /* Buttons */
    .btn-primary {
        background-color: var(--primary-hover);
        border-color: var(--primary-color);
        color: white;
    }

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

    .btn-outline-primary {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

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

    /* Cards */
    .card {
        border: none;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        transition: var(--transition);
        overflow: hidden;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    /* Hero Section */
    .hero {
        position: relative;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        padding-top: 6rem;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('{% static "images/pattern.png" %}');
        opacity: 0.1;
    }

    /* Footer */
    .footer {
        background-color: var(--primary-light);
        color: var(--text-dark);
        padding: 2rem 0;
        margin-top: 3rem;
    }

    .footer h5 {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .footer a {
        color: var(--text-dark) !important;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer a:hover {
        color: var(--primary-color) !important;
    }

    .social-links {
        margin-top: 1rem;
    }

    .social-links a {
        font-size: 2rem;
        margin-right: 1.5rem;
        color: var(--primary-color) !important;
        transition: transform 0.3s ease, color 0.3s ease;
        display: inline-block;
        text-decoration: none;
    }

    .social-links a:hover {
        transform: translateY(-3px);
        color: var(--primary-hover) !important;
    }

    .social-links a:last-child {
        margin-right: 0;
    }

    .copyright-section {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
    }

    .copyright-text {
        font-size: 0.95rem;
        color: var(--text-dark);
    }

    .designer-link {
        color: var(--primary-color) !important;
        font-weight: 500;
        position: relative;
        transition: all 0.3s ease;
    }

    .designer-link:hover {
        color: var(--primary-hover) !important;
        text-decoration: none !important;
    }

    .designer-link::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: var(--primary-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .team-card {
        transition: transform 0.3s ease;
        border-radius: 15px;
        overflow: hidden;
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        animation-delay: calc(var(--card-index, 0) * 0.1s);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    .team-image-wrapper {
        position: relative;
        padding-top: 100%;
        overflow: hidden;
    }

    .team-image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .team-card:hover .team-image-wrapper img {
        transform: scale(1.05);
    }

    .card-body {
        padding: 1.5rem;
    }

    .designer-link:hover::after {
        transform: scaleX(1);
    }
    .team-card {
        transition: transform 0.3s ease;
        border-radius: 15px;
        overflow: hidden;
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        animation-delay: calc(var(--card-index, 0) * 0.1s);
    }

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

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

    .team-image-wrapper {
        position: relative;
        padding-top: 100%;
        overflow: hidden;
    }

    .team-image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .team-card:hover .team-image-wrapper img {
        transform: scale(1.05);
    }

    .card-body {
        padding: 1.5rem;
    }    

    /* Features Section */
    .features {
        background: var(--bg-light);
    }

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

    .feature-card {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        display: grid;
        place-items: center;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        background: var(--primary-light);
        color: var(--primary);
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .feature-text {
        color: var(--text-light);
        margin: 0;
    }

    @media (max-width: 767.98px) {

        .services-grid,
        .features-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Animations */
    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    .float {
        animation: float 6s ease-in-out infinite;
    }

    /* Responsive Design */
    @media (max-width: 991.98px) {
        :root {
            --space-section: 3rem;
        }

        .navbar-collapse {
            background: white;
            padding: 1rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-top: 1rem;
        }

        .nav-link {
            padding: 0.5rem 1rem;
            margin: 0;
        }

        .nav-link::after {
            display: none;
        }
    }

    @media (max-width: 767.98px) {
        .footer [class*="col-"] {
            margin-bottom: 2rem;
        }
    }
