 /* Classic color scheme with modern accents */
        :root {
            --primary: #1a365d;
            --secondary: #2c5282;
            --accent: #ecc94b;
            --light: #f7fafc;
            --dark: #1a202c;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--dark);
        }
        
        .classic-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .modern-card {
            transition: all 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .modern-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .classic-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        
        .classic-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .accent-btn {
            background-color: var(--accent);
            color: var(--dark);
            font-weight: 600;
        }
        
        .accent-btn:hover {
            background-color: #f6ad55;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 3px;
            background: var(--accent);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 12px;
            position: relative;
            border-left: 4px solid var(--accent);
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 4rem;
            color: rgba(0, 0, 0, 0.05);
            font-family: serif;
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(236, 201, 75, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(236, 201, 75, 0); }
            100% { box-shadow: 0 0 0 0 rgba(236, 201, 75, 0); }
        }
        
        /* Classic form styling */
        .form-control {
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            border-radius: 8px;
        }
        
        .form-control:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
        }
        
        /* Elegant footer */
        .classic-footer {
            background: var(--primary);
            color: #cbd5e0;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        /* Responsive tweaks */
        @media (max-width: 768px) {
            .section-title:after {
                width: 30%;
            }
        }


