* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-1 {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e1e5e9;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 200px;
    height: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0a2363;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d8325c;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
    z-index: 1001;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #0a2363;
    border-radius: 8px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .header-hero {
        margin-top: 85px;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-item-dropdown {
        position: relative;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: none;
        margin-left: 1rem;
    }

    .dropdown-menu.open {
        display: block;
    }
}

/* Animated Hero Section */
.header-hero {
    background: linear-gradient(135deg, #0a2363 0%, #1a3a7a 25%, #2d4a8a 50%, #d8325c 75%, #e74c6f 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 85px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Background Animation Elements */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff6b6b, #4ecdc4);
    top: 10%;
    left: 10%;
    animation: float 20s infinite ease-in-out;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #45b7d1, #96ceb4);
    top: 60%;
    right: 20%;
    animation: float 25s infinite ease-in-out reverse;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f093fb, #f5576c);
    bottom: 20%;
    left: 60%;
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { top: 80%; left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { top: 40%; left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { top: 60%; left: 40%; animation-delay: 6s; animation-duration: 16s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 8s; animation-duration: 24s; }
.particle:nth-child(6) { top: 70%; left: 60%; animation-delay: 10s; animation-duration: 20s; }
.particle:nth-child(7) { top: 50%; left: 70%; animation-delay: 12s; animation-duration: 18s; }
.particle:nth-child(8) { top: 90%; left: 80%; animation-delay: 14s; animation-duration: 22s; }
.particle:nth-child(9) { top: 10%; left: 90%; animation-delay: 16s; animation-duration: 26s; }
.particle:nth-child(10) { top: 25%; left: 85%; animation-delay: 18s; animation-duration: 28s; }

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fff, transparent);
    top: 15%;
    right: 10%;
    animation: rotate 20s linear infinite, pulse 4s ease-in-out infinite;
}

.shape-2 {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(255, 255, 255, 0.2);
    top: 70%;
    left: 15%;
    animation: rotate 15s linear infinite reverse, bounce 3s ease-in-out infinite;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    top: 40%;
    right: 25%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 25s linear infinite, float 6s ease-in-out infinite;
}

.shape-4 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 80%;
    right: 40%;
    animation: pulse 5s ease-in-out infinite, float 8s ease-in-out infinite;
}

.shape-5 {
    width: 100px;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    top: 25%;
    left: 70%;
    animation: rotate 30s linear infinite, pulse 7s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Content */
.header-content-hero {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

/* Typewriter Effect */
.hero-text-animation {
    margin-bottom: 40px;
}

.typewriter-text {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
}

.typewriter-word {
    opacity: 0;
    animation: typewriter 3s steps(15) forwards, slideInUp 0.8s ease-out forwards;
}

.typewriter-cursor {
    display: inline-block;
    width: 3px;
    background-color: white;
    animation: blink 1.5s infinite, hideCursor 0.5s forwards;
    animation-delay: 3s;
    animation-fill-mode: forwards;
}

@keyframes typewriter {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes hideCursor {
    to { opacity: 0; }
}

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

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Subtitle Animation */
.header-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.subtitle-line:first-child {
    animation-delay: 0.5s;
}

.subtitle-line:last-child {
    animation-delay: 0.8s;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0a2363;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0a2363, #d8325c);
    border-radius: 2px;
}

/* Introduction Section */
.intro-section {
    text-align: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(10, 35, 99, 0.1);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(216, 50, 92, 0.1);
    color: #d8325c;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 2px solid rgba(216, 50, 92, 0.2);
}

.company-badge i {
    font-size: 1.2rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.highlight {
    color: #d8325c;
    font-weight: 600;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.partner-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.partner-card:first-child {
    border-top-color: #0a2363;
}

.partner-card:last-child {
    border-top-color: #d8325c;
}

.partner-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.partner-icon.demand {
    background: linear-gradient(135deg, #0a2363, #1a3a7a);
}

.partner-icon.supply {
    background: linear-gradient(135deg, #d8325c, #e74c6f);
}

.partner-card h3 {
    color: #0a2363;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-card p {
    color: #666;
    line-height: 1.6;
}

.partners-note {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-top: 30px;
    padding: 20px;
    background: rgba(10, 35, 99, 0.05);
    border-radius: 10px;
    border-left: 4px solid #0a2363;
}

/* Information Collection Section */
.info-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.info-card.personal {
    border-left: 5px solid #0a2363;
}

.info-card.automatic {
    border-left: 5px solid #d8325c;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.info-header h3 {
    display: flex;
    align-items: center;
    color: #0a2363;
    font-size: 1.4rem;
    font-weight: 600;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: white;
}

.info-card.personal .info-icon {
    background: linear-gradient(135deg, #0a2363, #1a3a7a);
}

.info-card.automatic .info-icon {
    background: linear-gradient(135deg, #d8325c, #e74c6f);
}

.info-badge {
    background: rgba(10, 35, 99, 0.1);
    color: #0a2363;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.info-card.automatic .info-badge {
    background: rgba(216, 50, 92, 0.1);
    color: #d8325c;
}

.info-list {
    list-style: none;
    margin-bottom: 25px;
}

.info-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #0a2363;
    font-weight: bold;
}

.info-card.automatic .info-list li::before {
    color: #d8325c;
}

.info-commitment {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 35, 99, 0.05);
    padding: 15px;
    border-radius: 10px;
    color: #0a2363;
    font-weight: 500;
}

.info-commitment i {
    color: #d8325c;
    font-size: 1.2rem;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.usage-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid transparent;
}

.usage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.usage-item:nth-child(1) { border-top-color: #0a2363; }
.usage-item:nth-child(2) { border-top-color: #d8325c; }
.usage-item:nth-child(3) { border-top-color: #2d4a8a; }
.usage-item:nth-child(4) { border-top-color: #e74c6f; }
.usage-item:nth-child(5) { border-top-color: #1a3a7a; }

.usage-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    background: linear-gradient(135deg, #0a2363, #d8325c);
}

.usage-item h4 {
    color: #0a2363;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.usage-item p {
    color: #666;
    line-height: 1.5;
}

/* Cookies Section */
.cookies-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.cookies-info {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #d8325c;
}

.cookies-intro {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.cookie-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d8325c, #e74c6f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.8rem;
}

.cookies-intro h3 {
    color: #0a2363;
    font-size: 1.5rem;
    font-weight: 600;
}

.cookies-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
    line-height: 1.5;
}

.benefit-item i {
    color: #d8325c;
    font-size: 1.2rem;
    width: 20px;
}

.cookies-control {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0a2363;
}

.control-info h4 {
    color: #0a2363;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.control-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.browser-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.browser-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(10, 35, 99, 0.1);
    color: #0a2363;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.browser-link:hover {
    background: #0a2363;
    color: white;
    transform: translateY(-2px);
}

/* Protection Measures */
.protection-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.protection-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.protection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.protection-card:nth-child(1) { border-bottom-color: #0a2363; }
.protection-card:nth-child(2) { border-bottom-color: #d8325c; }
.protection-card:nth-child(3) { border-bottom-color: #2d4a8a; }

.protection-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a2363, #d8325c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.protection-card h4 {
    color: #0a2363;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.protection-card p {
    color: #666;
    line-height: 1.6;
}

/* Sharing Policy */
.sharing-policy {
    margin: 40px 0;
}

.sharing-intro {
    text-align: center;
    margin-bottom: 40px;
}

.policy-statement {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    padding: 25px;
    background: rgba(10, 35, 99, 0.05);
    border-radius: 15px;
    border-left: 4px solid #0a2363;
}

.sharing-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.scenario-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.scenario-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.scenario-icon.legal { background: linear-gradient(135deg, #0a2363, #1a3a7a); }
.scenario-icon.safety { background: linear-gradient(135deg, #d8325c, #e74c6f); }
.scenario-icon.business { background: linear-gradient(135deg, #2d4a8a, #3a5ba8); }
.scenario-icon.partners { background: linear-gradient(135deg, #1a3a7a, #0a2363); }

.scenario-card h4 {
    color: #0a2363;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.scenario-card p {
    color: #666;
    line-height: 1.5;
}

/* External Links Notice */
.external-links-notice {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #d8325c;
    margin: 40px 0;
    align-items: flex-start;
}

.notice-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d8325c, #e74c6f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-content h4 {
    color: #0a2363;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.notice-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.recommendation {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(216, 50, 92, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: #d8325c;
    font-weight: 500;
}

.recommendation i {
    font-size: 1.2rem;
}

/* Updates Section */
.updates-section {
    margin: 40px 0;
}

.updates-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0a2363;
    margin-bottom: 30px;
}

.updates-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a2363, #1a3a7a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.updates-info h4 {
    color: #0a2363;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.updates-info p {
    color: #555;
    line-height: 1.6;
}

.updates-commitment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.commitment-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(10, 35, 99, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #d8325c;
}

.commitment-box i {
    color: #d8325c;
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.commitment-box p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

        /* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #d8325c 0%, #e74c6f 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr auto 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-text {
    text-align: left;
}

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.contact-button {
    display: flex;
    justify-content: flex-end;
}

.contact-cta .btn-primary {
    background: white;
    color: #d8325c;
    border-color: white;
    font-size: 1.1rem;
}

.contact-cta .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-text {
        text-align: center;
    }

    .contact-text h2 {
        font-size: 2rem;
    }

    .contact-text p {
        font-size: 1rem;
    }

    .arrow-img {
        width: 80px;
        margin: 0 auto;
    }

    .contact-button {
        justify-content: center;
    }
}
/* Footer */
.footer {
    background: #0a2363;
    color: white;
    padding: 60px 20px 20px;
    z-index: 100;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-logo-wrapper {
    background: white;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #d8325c;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #d8325c;
    color: white;
}

.social-icon.linkedin:hover { background-color: #0077b5; }
.social-icon.twitter:hover { background-color: #1da1f2; }
.social-icon.instagram:hover { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); 
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    width: 90%;
        max-height: 90vh;         /* ✅ Limit content height */
    overflow-y: auto; 
    max-width: 800px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a2363;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a2363;
}
/* Style for select dropdowns */
.form-group select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: white;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
}

.form-group select:focus {
  outline: none;
  border-color: #0a2363;
}

/* Book a Demo Button */
.contact-form .btn {
  background-color: #0a2363;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #061a45;
}
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}
.btn-primary {
    background: #d8325c;
    color: white;
    border-color: #d8325c;
}

.btn-primary:hover {
    background: #c12951;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(216, 50, 92, 0.3);
}


/* Responsive Design */
@media (max-width: 992px) {
    .cookies-section {
        grid-template-columns: 1fr;
    }
    
    .external-links-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .updates-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-hero {
        padding: 60px 20px 80px;
    }
    
    .typewriter-text {
        font-size: 2.5rem;
    }
    
    .header-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-section {
        padding: 40px 20px;
    }
    
    .partners-grid,
    .info-types {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 40px 30px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-hero {
        padding: 40px 15px 60px;
    }
    
    .typewriter-text {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .intro-section {
        padding: 30px 20px;
    }
    
    .partner-card,
    .info-card,
    .protection-card {
        padding: 30px 20px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}