
        @import url('../templates/css/header.css');
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #ffffff;
            color: #333333;
            line-height: 1.6;
            padding-top: 120px; /* Adjust based on actual header height */
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 2rem; /* Additional spacing after header */
            padding-top: 1rem;
            padding: 3rem 2rem;
        }
        
        .header {
            text-align: center;
            margin-bottom: 3rem;
            border-bottom: 2px solid #0066cc;
            padding-bottom: 2rem;
        }

        .header-fixed body {
        padding-top: 140px; /* Account for fixed header height */
        }
        
        .title {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #0066cc;
        }
        
        .subtitle {
            font-size: 1.1rem;
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .intelligence-showcase {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 2rem;
            margin-bottom: 3rem;
        }
        
        .intel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            text-align: center;
        }
        
        .intel-item {
            padding: 1rem;
        }
        
        .intel-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0066cc;
        }
        
        .intel-label {
            font-size: 0.9rem;
            color: #666666;
            margin-top: 0.25rem;
        }
        
        .form-section {
            background: #ffffff;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .form-title {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #333333;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .group-section {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 6px;
            border: 1px solid #e9ecef;
        }
        
        .group-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #0066cc;
        }
        
        .group-instructions {
            color: #666666;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #333333;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ced4da;
            border-radius: 4px;
            background: #ffffff;
            color: #333333;
            font-size: 1rem;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
        }
        
        textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .radio-option, .checkbox-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        
        .radio-option input, .checkbox-option input {
            width: auto;
            margin: 0;
        }
        
        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 0.5rem;
        }
        
        .submit-btn {
            background: #0066cc;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background 0.2s;
        }
        
        .submit-btn:hover {
            background: #0056b3;
        }
        
        .submit-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
        }
        
        .message {
            padding: 1rem;
            border-radius: 4px;
            margin: 1rem 0;
            text-align: center;
        }
        
        .success {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }
        
        .error {
            background: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }
        body.header-fixed {
    padding-top: calc(var(--nav-height, 120px) + 20px);
        }
        
        @media (max-width: 768px) {
            .container { padding: 2rem 1rem; }
            .title { font-size: 2rem; }
            .intel-grid { grid-template-columns: 1fr; }
            .checkbox-group { grid-template-columns: 1fr; }
        }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    margin-top: 2rem; /* Additional spacing to clear header */
}

/* Or more targeted fix */
.header {
    margin-top: 2rem; /* Push the "Contact Modigin" title down */
}