        :root {
            --primary-color: #2a4d69;
            --secondary-color: #4b86b4;
            --accent-color: #e67e22;
            --light-color: #f5f5f5;
            --dark-color: #333;
            --text-color: #444;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            font-size: 18px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation */
        nav {
            background-color: var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: white;
            transition: var(--transition);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: var(--transition);
        }
        
        /* Header */
        header {
            background: linear-gradient(rgba(42, 77, 105, 0.9), rgba(42, 77, 105, 0.7)), url('/api/placeholder/1200/400') center/cover;
            color: white;
            text-align: center;
            padding: 100px 0 70px;
            position: relative;
        }
        
        header h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        header p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }
        
        .cta-button:hover {
            background-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
        
        .social-icons {
            margin-top: 25px;
        }
        
        .social-icons a {
            color: white;
            font-size: 22px;
            margin: 0 10px;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        /* Section Styling */
        section {
            background-color: white;
            padding: 60px 40px;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        h2 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 4px;
            width: 60px;
            background-color: var(--accent-color);
        }
        
        /* About Section */
        #about {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
        }
        
        .about-img-container {
            flex: 0 0 180px;
            margin-right: 30px;
            margin-bottom: 15px;
        }
        
        .about-img {
            width: 100%;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 5px solid white;
            transition: var(--transition);
        }
        
        .about-img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .about-content a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .about-content a:hover {
            color: var(--accent-color);
        }
        
        /* Services Section */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 25px;
            transition: var(--transition);
            border-top: 4px solid var(--secondary-color);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .service-card h3 {
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-card p {
            font-size: 16px;
            line-height: 1.7;
        }
        
        /* Clients Section */
        #in-house, #consulting {
            overflow: hidden;
        }
        
        .section-intro {
            max-width: 800px;
            margin: 0 auto 40px;
            text-align: center;
            color: var(--text-color);
        }
        
        .clients-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .client-logo {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 180px;
            padding: 15px;
        }
        
        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .client-details {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
        }
        
        .client-details img {
            filter: grayscale(100%);
            transition: var(--transition);
            max-width: 130px;
            max-height: 100px;
            object-fit: contain;
        }
        
        .client-logo:hover .client-details img {
            filter: grayscale(0%);
        }
        
        .client-title {
            font-weight: 500;
            font-size: 14px;
            text-align: center;
            margin-top: 15px;
            color: var(--primary-color);
        }
        
        /* What Managers & Clients Ask Section */
        .subsection-title {
            font-family: 'Montserrat', sans-serif;
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin: 50px 0 30px;
            font-weight: 600;
        }
        
        .asks-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .ask-card {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 25px;
            transition: var(--transition);
            border-left: 4px solid var(--accent-color);
            display: flex;
            flex-direction: column;
        }
        
        .ask-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            background-color: #ffffff;
        }
        
        .ask-question {
            margin-bottom: 15px;
            position: relative;
        }
        
        .ask-question i {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-right: 8px;
            opacity: 0.7;
        }
        
        .ask-question p {
            font-style: italic;
            color: var(--primary-color);
            font-weight: 500;
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }
        
        .ask-answer {
            padding-top: 15px;
            border-top: 1px solid #e0e0e0;
        }
        
        .ask-answer p {
            color: var(--text-color);
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }
        
        /* Contact Section */
        #contact {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
        }
        
        #contact h2 {
            color: white;
        }
        
        #contact h2:after {
            background-color: white;
        }
        
        .contact-methods {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .contact-method {
            text-align: center;
            flex: 1;
            min-width: 250px;
            margin: 15px;
        }
        
        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .contact-method h3 {
            margin-bottom: 10px;
        }
        
        .contact-method a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .contact-method a:hover {
            color: var(--accent-color);
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-color);
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 0 2px rgba(75, 134, 180, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
            font-weight: 600;
        }
        
        .submit-btn:hover {
            background-color: #d35400;
            transform: translateY(-2px);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            text-align: center;
            padding: 40px 0;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links {
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .footer-social {
            margin-bottom: 20px;
        }
        
        .footer-social a {
            color: white;
            font-size: 20px;
            margin: 0 10px;
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* Responsive Design */
        @media screen and (max-width: 968px) {
            .nav-links {
                position: absolute;
                right: 0;
                height: 0;
                top: 60px;
                background-color: var(--primary-color);
                flex-direction: column;
                width: 100%;
                align-items: center;
                overflow: hidden;
                transition: var(--transition);
                z-index: 1000;
            }
            
            .nav-links.active {
                height: auto;
                padding: 20px 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .client-logo {
                height: 200px;
            }
        }
        
        @media screen and (max-width: 768px) {
            header h1 {
                font-size: 2.5rem;
            }
            
            header p {
                font-size: 1.2rem;
            }
            
            section {
                padding: 40px 25px;
            }
            
            .services-container {
                grid-template-columns: 1fr;
            }
            
            .contact-methods {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .asks-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media screen and (max-width: 480px) {
            header h1 {
                font-size: 2rem;
            }
            
            .about-img-container {
                flex: 0 0 100%;
                margin-right: 0;
                margin-bottom: 20px;
                text-align: center;
            }
            
            .about-img {
                width: 180px;
            }
        }