/* Common header styles */
        
        
        /* Security & Ethics Section */
        .security-section {
            position: relative;
            background: linear-gradient(180deg, rgba(1, 87, 255, 0.03) 0%, rgba(255, 17, 59, 0.03) 100%);
        }
        
        .security-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230157ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 0;
        }
        
        .security-container {
            position: relative;
            z-index: 1;
        }
        
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pillar-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .pillar-card.animate-in {
            animation: card-appear 0.6s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .pillar-card:nth-child(1).animate-in { animation-delay: 0.1s; }
        .pillar-card:nth-child(2).animate-in { animation-delay: 0.2s; }
        .pillar-card:nth-child(3).animate-in { animation-delay: 0.3s; }
        .pillar-card:nth-child(4).animate-in { animation-delay: 0.4s; }
        
        @keyframes card-appear {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(1, 87, 255, 0.1);
        }
        
        .pillar-header {
            padding: 30px 30px 20px;
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        
        
        .pillar-title-wrapper {
            flex-grow: 1;
        }
        
        .pillar-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--neutral-800);
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }
        
        .pillar-card:hover .pillar-title {
            color: var(--primary-blue);
        }
        
        .pillar-body {
            padding: 0 30px 30px;
            font-size: 15px;
            color: var(--neutral-600);
            line-height: 1.6;
        }
        
        /* Latest Insights Section */
        .insights-section {
            position: relative;
            background: white;
        }
        
        .insights-container {
            position: relative;
            z-index: 1;
        }
        
        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .filter-tab {
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--neutral-100);
            color: var(--neutral-600);
        }
        
        .filter-tab:hover {
            background: var(--neutral-200);
            color: var(--neutral-800);
        }
        
        .filter-tab.active {
            background: var(--primary-blue);
            color: white;
        }
        
        .insights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }
        
        .insight-card {
            border-radius: 16px;
            overflow: hidden;
            background: white;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            border: 1px solid var(--neutral-200);
        }
        
        .insight-card.animate-in {
            animation: card-appear 0.6s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .insight-card:nth-child(1).animate-in { animation-delay: 0.1s; }
        .insight-card:nth-child(2).animate-in { animation-delay: 0.2s; }
        .insight-card:nth-child(3).animate-in { animation-delay: 0.3s; }
        .insight-card:nth-child(4).animate-in { animation-delay: 0.4s; }
        
        .insight-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .insight-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .insight-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .insight-card:hover .insight-image img {
            transform: scale(1.05);
        }
        
        .insight-type {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 1;
            background: var(--primary-blue);
            color: white;
        }
        
        .insight-content {
            padding: 25px;
        }
        
        .insight-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.4;
            color: var(--neutral-800);
            transition: color 0.3s ease;
        }
        
        .insight-card:hover .insight-title {
            color: var(--primary-blue);
        }
        
        .insight-excerpt {
            font-size: 14px;
            color: var(--neutral-600);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .insight-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--neutral-500);
        }
        
        .insight-date {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .insight-read {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--primary-blue);
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .insight-card:hover .insight-read {
            color: var(--primary-red);
        }
        
        .browse-btn {
            display: block;
            max-width: 200px;
            padding: 15px 25px;
            margin: 0 auto;
            border-radius: 30px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
            color: white;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 15px rgba(1, 87, 255, 0.2);
            text-decoration: none;
            font-size: 16px;
            position: relative;
            overflow: hidden;
        }
        
        .browse-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s ease;
            z-index: 0;
        }
        
        .browse-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(255, 17, 59, 0.3);
        }
        
        .browse-btn:hover::before {
            left: 100%;
        }
        
        /* Contact Section */
        .contact-section {
            position: relative;
            background: linear-gradient(135deg, rgba(1, 87, 255, 0.05), rgba(255, 17, 59, 0.05));
        }
        
        .contact-container {
            position: relative;
            z-index: 1;
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            max-width: 1100px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            /* Removed opacity and transform to make it visible immediately */
        }
        
        .contact-info {
            padding: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
            color: white;
            display: flex;
            flex-direction: column;
        }
        
        .contact-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
        }
        
        .contact-subtitle {
            font-size: 16px;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .contact-details {
            margin-top: auto;
        }
        
        .contact-locations {
            margin-bottom: 30px;
        }
        
        .contact-location-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            opacity: 0.7;
        }
        
        .location-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .location-pill {
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .location-pill:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }
        
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-method:hover {
            transform: translateX(5px);
        }
        
        .contact-method-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .contact-method:hover .contact-method-icon {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .contact-method-text {
            font-size: 15px;
            font-weight: 500;
        }
        
        .contact-form {
            padding: 50px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 0;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--neutral-700);
        }
        
        .form-input,
        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--neutral-300);
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
            font-family: var(--font-sans);
        }
        
        .form-input:focus,
        .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(1, 87, 255, 0.1);
            outline: none;
        }
        
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            gap: 10px;
        }
        
        .form-checkbox {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            cursor: pointer;
        }
        
        .checkbox-text {
            font-size: 14px;
            color: var(--neutral-600);
            line-height: 1.4;
        }
        
        .form-submit {
            padding: 14px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 8px 15px rgba(1, 87, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .form-submit i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .form-submit:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(255, 17, 59, 0.3);
        }
        
        .form-submit:hover i {
            transform: translateX(4px);
        }
        
        .secondary-cta {
            text-align: center;
            margin-top: 40px;
        }
        
        .secondary-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 30px;
            border: 1px solid var(--primary-blue);
            background: white;
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .secondary-cta-btn:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(1, 87, 255, 0.15);
        }
        
        /* Decorative Elements */
        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            z-index: 0;
        }
        
        .shape-1 {
            background: var(--primary-blue);
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
        }
        
        .shape-2 {
            background: var(--primary-red);
            width: 400px;
            height: 400px;
            bottom: -150px;
            left: -150px;
        }
        
        /* Animation Keyframes */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(1, 87, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(1, 87, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(1, 87, 255, 0);
            }
        }
        
        /* Media Queries */
        @media (max-width: 992px) {
            .pillars-grid,
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            
            .insights-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 38px;
            }
            
            .section-subtitle {
                font-size: 18px;
            }
            
            .contact-info,
            .contact-form {
                padding: 40px;
            }
            
            /* Ensure the form is properly displayed on tablet */
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .insights-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .pillar-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .pillar-title-wrapper {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 28px;
            }
            
            .filter-tabs {
                flex-wrap: wrap;
            }
            
            .contact-info,
            .contact-form {
                padding: 30px;
            }
            
            .location-pills {
                flex-direction: column;
            }
            
            .contact-title {
                font-size: 28px;
            }
        }