@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #414a64;
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 900;
    padding: 0;
    overflow: visible;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 32px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #414a64;
}

/* Navigation Styles */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
}

.nav ul li {
    position: relative;
}

.nav ul li a {
    display: block;
    padding: 25px 18px;
    color: #414a64;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 2px;
    position: relative;
}

.nav ul li a:hover,
.nav ul li.dropdown:hover > a {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.nav a.active {
    color: #ffd700;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.1);
}

.nav a.active:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown:hover {
    transition-delay: 0.1s;
}

.nav ul li.dropdown > a:after {
    content: "▼";
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: #94a3b8;
}

.nav ul li.dropdown:hover > a:after {
    transform: rotate(180deg);
    color: #2563eb;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    border: 1px solid #e2e8f0;
    overflow: visible;
    margin-top: 5px;
    list-style: none;
    padding: 8px 0;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Keep dropdown visible when hovering over the menu itself */
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
    width: 100%;
}

.dropdown-menu li a {
    display: block !important;
    padding: 14px 20px !important;
    color: #475569 !important;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    white-space: nowrap;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    color: #2563eb !important;
    padding-left: 24px !important;
}

.dropdown-menu li.dropdown > a:after {
    content: "▶";
    font-size: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: all 0.2s ease;
}

.dropdown-menu li.dropdown:hover > a:after {
    color: #2563eb;
    right: 12px;
}

/* Submenu Styles */
.dropdown-submenu {
    position: absolute;
    top: -8px;
    left: 100%;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    overflow: visible;
    margin-left: 8px;
    z-index: 10000;
    list-style: none;
    padding: 8px 0;
}

.dropdown-menu li.dropdown:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Keep submenu visible when hovering over it */
.dropdown-submenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu li a {
    padding: 12px 18px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #475569 !important;
}

.dropdown-submenu li a:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    color: white !important;
    padding-left: 22px !important;
}

/* Mobile dropdown improvements */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8fafc;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu {
        max-height: 200px;
    }
    
    .dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f1f5f9;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu li.dropdown:hover > .dropdown-submenu {
        max-height: 100px;
    }
    
    .nav ul li.dropdown > a:after,
    .dropdown-menu li.dropdown > a:after {
        display: none;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(37, 99, 235, 0.05);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #414a64;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 12px 12px;
        overflow: hidden;
    }
    
    .nav ul {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .nav ul.active {
        max-height: 500px;
    }
    
    .nav ul li a {
        padding: 16px 20px;
        border-bottom: 1px solid #f1f5f9;
        margin: 0;
        border-radius: 0;
    }
    
    .nav ul li:last-child a {
        border-bottom: none;
    }
}

.auth-buttons .consultation-btn {
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.auth-buttons .consultation-btn:hover {
    background: #1d4ed8;
}

/* Hero Section */
.hero {
    background: #112152 !important;
    color: white;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-right {
    flex: 0 0 400px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #414a64;
}

.hero-title-gold {
    color: #ffd700;
}

.hero-title-white {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 500;
    max-width: 600px;
}

.consultation-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin: 40px auto;
    color: #414a64;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.consultation-form h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #414a64;
    font-weight: 700;
}

.form-subtitle {
    color: #414a64;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row input,
.form-row select,
.hero-form textarea {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Phone Input Container */
.phone-input-container {
    display: flex;
    align-items: stretch;
    position: relative;
    height: 48px;
    background: white;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    overflow: visible;
}

.custom-select-wrapper {
    position: relative;
    z-index: 100;
    overflow: visible;
}

.custom-select {
    position: relative;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    min-width: 100px;
    z-index: 100;
}

.select-selected {
    background-color: white;
    cursor: pointer;
    user-select: none;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 20px;
    position: relative;
    min-width: 80px;
    text-align: center;
}

.select-selected:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.select-selected:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #94a3b8 transparent transparent transparent;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #94a3b8 transparent;
    transform: translateY(-50%) rotate(180deg);
}

.select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
    border: 2px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.select-items.show {
    display: block !important;
}

.select-items div {
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.select-items div:last-child {
    border-bottom: none;
}

.select-items div:hover {
    background-color: #f8fafc;
    color: #2563eb;
    font-weight: 600;
}

.phone-input-container input[type="tel"] {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.phone-input-container:focus-within {
    border-color: #2563eb;
}

/* CTA Button */
.cta-button {
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.cta-button:hover {
    background: #1d4ed8;
}

.cta-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.media-mentions {
    margin-top: 50px;
    color: #414a64;
}

.media-mentions p {
    margin-bottom: 20px;
    font-size: 14px;
}

.media-mentions-title {
    margin-bottom: 20px;
    font-size: 14px;
    color: white !important;
    font-weight: 500;
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.media-logo {
    padding: 8px 16px;
    background: #f7fafc;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    color: #414a64;
    border: 1px solid #e2e8f0;
}

.media-logo-image {
    padding: 8px 16px;
    background: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.logo-img {
    max-height: 24px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.media-logo-image:hover .logo-img {
    opacity: 1;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 20px;
}

.fraud-types-title {
    font-size: 28px !important;
}

.section-header p {
    font-size: 20px;
    color: #414a64;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fraud Types Section */
.fraud-types {
    background: white;
    padding: 80px 0;
}

.fraud-carousel {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.company-item {
    text-align: center;
    padding: 15px 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    max-height: 60px;
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.company-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.company-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo {
    max-height: 20px;
    max-width: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.company-item:hover .company-logo {
    opacity: 1;
}

.company-logo-styled {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo-text.small {
    font-size: 10px;
}

/* Binance - Yellow and Black */
.binance-logo .logo-text {
    color: #F3BA2F;
    background: linear-gradient(135deg, #F3BA2F, #E6A91F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Coinbase - Blue */
.coinbase-logo .logo-text {
    color: #0052FF;
    font-weight: 800;
}

/* Kraken - Purple */
.kraken-logo .logo-text {
    color: #5741D9;
    font-weight: 800;
}

/* Uniswap - Pink with unicorn */
.uniswap-logo {
    gap: 1px;
}

.uniswap-icon {
    font-size: 12px;
    margin-bottom: 1px;
}

.uniswap-logo .logo-text {
    color: #FF007A;
    font-weight: 700;
}

/* Ethereum - Blue/Gray with diamond */
.ethereum-logo {
    gap: 1px;
}

.eth-diamond {
    font-size: 12px;
    color: #627EEA;
    font-weight: bold;
    margin-bottom: 1px;
}

.ethereum-logo .logo-text {
    color: #627EEA;
    font-weight: 600;
}

.company-item:hover .logo-text {
    opacity: 1;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    color: #414a64;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #2563eb;
}

/* Info Section */
.info-section {
    background: #f8fafc;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-content {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 25px;
}

.info-content p {
    font-size: 18px;
    color: #414a64;
    line-height: 1.7;
    margin: 0;
}

/* Services Section */
.services {
    background: white;
    padding: 100px 0;
}

.certification-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: #edf2f7;
    border-radius: 8px;
}

.cert-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cdfe-logo-img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.certification-badge:hover .cdfe-logo-img {
    opacity: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    align-items: stretch;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #112152;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: #2563eb;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.service-card.featured {
    border-color: #112152;
    position: relative;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #eab308, #f59e0b);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #eab308;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    padding: 25px 20px;
    text-align: center;
    background: #f8fafc;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 12px;
    line-height: 1.2;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    line-height: 1.1;
}

.service-card:first-child .price {
    color: #030e31;
}

.service-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content > p {
    font-weight: 600;
    color: #414a64;
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 14px;
}

.service-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 24px;
    width: 40px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #414a64;
    margin-bottom: 10px;
}

.feature-content p {
    color: #414a64;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex: 1;
}

.service-list li {
    color: #414a64;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

.service-list li:last-child {
    border-bottom: none;
}

.order-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.order-btn:hover {
    background: #1d4ed8;
}

/* Free Consultation Section */
.free-consultation {
    background: #f8fafc;
    padding: 100px 0;
    text-align: center;
}

.consultation-content {
    background: #112152;
    color: white;
    width: 80%;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(17, 33, 82, 0.15);
}

.consultation-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.consultation-content p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.consultation-btn {
    background: #eab308;
    color: #414a64;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.consultation-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 14px;
    color: #6b7280;
    max-width: 600px;
    margin: 40px auto 0 auto;
    line-height: 1.5;
    text-align: center;
}

.disclaimer a {
    color: #2563eb;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 2px solid #112152;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(17, 33, 82, 0.1);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(17, 33, 82, 0.15);
}

.step-number {
    display: none;
}

.step h4 {
    font-size: 24px;
    font-weight: 600;
    color: #414a64;
    margin-bottom: 20px;
}

.step p {
    color: #414a64;
    line-height: 1.6;
    font-size: 16px;
}

/* Money Retrieved Section */
.money-retrieved {
    background: #112152 !important;
    color: white;
    padding: 100px 0;
}

.stats-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.stats-text {
    flex: 1;
    text-align: left;
}

.stats-amount {
    flex-shrink: 0;
    text-align: right;
}

.stats-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.amount {
    font-size: 72px;
    font-weight: 800;
    color: #eab308;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stats-description {
    font-size: 18px;
    margin: 20px 0 40px 0;
    line-height: 1.7;
    color: #cbd5e0;
}

.consultation-link {
    display: inline-block;
    background: #eab308;
    color: #414a64;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.consultation-link:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Why Us Section */
.why-us {
    background: #f8fafc;
    padding: 80px 0;
}

.why-us-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-us-image {
    width: 250px;
    height: 250px;
    max-width: 100%;
    height: auto;
}

.why-us-content {
    flex: 1;
    text-align: left;
}

.why-us-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 30px;
}

.why-us-content p {
    font-size: 20px;
    color: #414a64;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-link {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.about-link:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

/* Guarantee Section */
.guarantee {
    background: white;
    padding: 80px 0;
}

.guarantee-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-content {
    flex: 1;
    text-align: left;
}

.guarantee-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-image {
    width: 250px;
    height: 250px;
    max-width: 100%;
    height: auto;
}

.guarantee-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 30px;
}

.guarantee-content p {
    font-size: 20px;
    color: #414a64;
    line-height: 1.7;
    margin-bottom: 30px;
}

.terms-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Warning Section */
.warning {
    background: white;
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.warning-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.warning-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warning-image {
    width: 250px;
    height: 250px;
    max-width: 100%;
    height: auto;
}

.warning-content {
    flex: 1;
    text-align: left;
}

.warning-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #041238;
    margin-bottom: 30px;
}

.warning-content p {
    font-size: 18px;
    color: #041238;
    line-height: 1.7;
    margin-bottom: 30px;
}

.warning-content ul {
    text-align: left;
    margin: 0 0 30px 0;
    padding-left: 20px;
}

.warning-content li {
    font-size: 16px;
    color: #041238;
    margin-bottom: 10px;
    font-weight: 500;
}

.blacklist-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.blacklist-link:hover {
    text-decoration: underline;
}

/* Blacklist Check Section */
.blacklist-check {
    background: white;
    padding: 80px 0;
}

.blacklist-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.blacklist-content {
    flex: 1;
    text-align: left;
}

.blacklist-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blacklist-image {
    width: 250px;
    height: 250px;
    max-width: 100%;
    height: auto;
}

.blacklist-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 30px;
}

.blacklist-content p {
    font-size: 20px;
    color: #414a64;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* CTA Section */
.cta-section {
    background: #112152;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #112152;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #112152;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.cta-form select {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #414a64;
}

.cta-form button {
    background: #eab308;
    color: #414a64;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-form button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Video Reviews Section */
.video-reviews {
    background: #f8fafc;
    padding: 100px 0;
}

.video-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.video-item {
    background: white;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    font-size: 48px;
    margin-bottom: 20px;
}

.video-item p {
    font-size: 16px;
    color: #414a64;
    font-weight: 500;
}

.see-more-link {
    display: inline-block;
    margin-top: 50px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.see-more-link:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

/* Fraud Types Detailed Section */
.fraud-types-detailed {
    background: white;
    padding: 100px 0;
}

.fraud-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fraud-type-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 25px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #414a64;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.fraud-icon {
    width: 32px;
    height: 32px;
    color: #112152;
    transition: all 0.3s ease;
}

.fraud-type-link:hover {
    border-color: #112152;
    color: #112152;
    background: #f0f4ff;
    transform: translateY(-3px);
}

.fraud-type-link:hover .fraud-icon {
    color: #ffd700;
    transform: scale(1.1);
}

/* About Detailed Section */
.about-detailed {
    background: #f8fafc;
    padding: 100px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-item {
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 25px;
}

.about-item p {
    font-size: 18px;
    color: #414a64;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-item p:last-child {
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    background: #112152 !important;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.final-cta-form select {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #414a64;
}

.final-cta-form button {
    background: #eab308;
    color: #414a64;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.final-cta-form button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Latest Articles Section */
.latest-articles {
    background: #f8fafc;
    padding: 100px 0;
}

.latest-articles .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.latest-articles .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 20px;
}

.latest-articles .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.article-date {
    font-size: 14px;
    color: #94a3b8;
}

.read-more {
    color: #112152;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #ffd700;
}

/* Contact Form Section */
.contact-form {
    background: white !important;
    padding: 100px 0;
    color: #030e31;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #030e31;
}

.contact-content p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #64748b;
    line-height: 1.6;
}

.contact-form-main {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-main select,
.contact-form-main input {
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #414a64;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form-main select:focus,
.contact-form-main input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-form-main textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #414a64;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    resize: vertical;
    font-family: inherit;
}

.contact-form-main textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-form-main .consultation-btn {
    background: #eab308;
    color: #414a64;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form-main .consultation-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Company Statement Section */
.company-statement {
    background: #f8fafc;
    padding: 80px 0;
}

.statement-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.statement-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 30px;
}

.statement-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #030e31;
    color: white;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-column p {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid #1e293b;
}

.footer-social h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 20px;
    border: 1px solid #334155;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #030e31;
    background: #ffd700;
    border-color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.footer-partners {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
}

.footer-partners p {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logo {
    color: #94a3b8;
    font-size: 14px;
    padding: 5px 0;
}

.footer-disclaimer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    text-align: left;
}

.footer-disclaimer p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-disclaimer a {
    color: #ffd700;
    text-decoration: none;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}

/* Testimonials Page Specific Styles */
.testimonials-hero {
    background: linear-gradient(135deg, #112152, #030e31);
    padding: 120px 0 80px 0;
    color: white;
    text-align: center;
}

.testimonials-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.testimonials-hero .hero-subtitle {
    font-size: 20px;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

.stats-section {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
}

.testimonials-main {
    background: #f8fafc;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    border: 2px solid #ffd700;
    transform: scale(1.02);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
    min-width: 150px;
}

.client-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.case-type {
    background: #112152;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.recovery-amount {
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-content p {
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 10px;
}

.case-duration {
    font-weight: 600;
}

.recovery-rate {
    color: #10b981;
    font-weight: 700;
}

.process-section {
    background: white;
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #112152;
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #112152;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 15px;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary {
    background: #112152;
    color: white;
    border: 2px solid #112152;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: #112152;
    border-color: #112152;
}

.btn-secondary {
    background: #112152;
    color: white;
    border: 2px solid #112152;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: transparent;
    color: #112152;
    border-color: #112152;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul {
        flex-direction: column;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 10px 0;
    }
    
    .nav ul li a {
        padding: 15px 20px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .nav ul li:last-child a {
        border-bottom: none;
    }
    
    .auth-buttons {
        width: 100%;
        text-align: center;
    }
    
    .auth-buttons .consultation-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-right {
        flex: 1;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .consultation-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Section responsive styles */
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 18px;
    }
    
    .fraud-carousel {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    .contact-content h2 {
        font-size: 32px;
    }
    
    .contact-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-main {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-icons {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Testimonials Page Mobile Styles */
    .testimonials-hero h1 {
        font-size: 36px;
    }
    
    .testimonials-hero .hero-subtitle {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .client-info {
        text-align: center;
        margin: 15px 0;
    }
    
    .recovery-amount {
        align-self: center;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary, .btn-primary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .fraud-types-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
    }
    
    .amount {
        font-size: 48px;
    }
    
    .stats-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-text {
        text-align: center;
    }
    
    .stats-amount {
        text-align: center;
        margin-top: 20px;
    }
    
    .why-us-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .why-us-content {
        text-align: center;
    }
    
    .why-us-image {
        width: 180px;
        height: 180px;
    }
    
    .guarantee-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .guarantee-content {
        text-align: center;
    }
    
    .guarantee-image {
        width: 180px;
        height: 180px;
    }
    
    .warning-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .warning-content {
        text-align: center;
    }
    
    .warning-content ul {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 30px auto;
    }
    
    .warning-image {
        width: 180px;
        height: 180px;
    }
    
    .blacklist-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .blacklist-content {
        text-align: center;
    }
    
    .blacklist-image {
        width: 180px;
        height: 180px;
    }
    
    .cta-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-form select,
    .cta-form button {
        width: 100%;
    }
    
    .about-item {
        padding: 30px 25px;
    }
    
    .info-content {
        max-width: 90%;
        padding: 40px 30px;
    }
    
    .info-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .info-content p {
        font-size: 16px;
    }
    
    .final-cta-content h2 {
        font-size: 36px;
    }
}

/* Cyber Investigation Page Styles */
.cyber-hero {
    background: linear-gradient(135deg, #112152 0%, #041238 100%);
    padding: 120px 0 80px 0;
}

.cyber-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cyber-hero .hero-left {
    flex: 1;
}

.cyber-hero .hero-right {
    flex: 0 0 400px;
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    color: white;
}

.hero-stats-card .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-stats-card .stat-item {
    text-align: center;
}

.hero-stats-card .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.hero-stats-card .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #112152;
}

/* Cyber Types Section */
.cyber-types-section {
    padding: 80px 0;
    background: #f8fafc;
}

.cyber-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cyber-type-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cyber-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.cyber-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cyber-type-card h3 {
    color: #112152;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cyber-type-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: #475569;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.features-list li:before {
    content: "✓";
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    margin-top: 50px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: "";
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: 50px;
    background: #e2e8f0;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h3 {
    color: #112152;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.step-features li {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: #f8fafc;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.tool-card h3 {
    color: #112152;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tool-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background: white;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.checkmark {
    flex-shrink: 0;
}

/* Responsive Design for Cyber Investigation Page */
@media (max-width: 768px) {
    .cyber-hero .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .cyber-hero .hero-right {
        flex: none;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cyber-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
    
    .step-features {
        justify-content: center;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
