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

:root {
    --primary: #000000;
    --primary-dark: #000000;
    --primary-light: #1A1A1A;
    --accent: #FFCB08;
    --accent-light: #FFD633;
    --accent-dark: #E6B800;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    --gradient-accent: linear-gradient(135deg, #FFCB08 0%, #FFD633 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #000000 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 203, 8, 0.1) 0%, rgba(255, 203, 8, 0.05) 100%);
    --text-primary: #000000;
    --text-secondary: #4A4A4A;
    --text-light: #8A8A8A;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-dark: #000000;
    --border: #E5E5E5;
    --border-light: #F5F5F5;
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    --shadow-accent: 0 10px 30px -5px rgba(255, 203, 8, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Text Selection */
::selection {
    background: var(--primary);
    color: var(--accent);
}

::-moz-selection {
    background: var(--primary);
    color: var(--accent);
}

/* Top Bar */
.topbar {
    background: var(--primary);
    color: white;
    padding: 0.75rem 0;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.topbar-phone {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.topbar-phone:hover {
    color: var(--accent);
}

.topbar-phone i {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1rem;
}

.phone-number {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9375rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.logo-img {
    width: auto;
    height: 32px;
    object-fit: contain;
    display: block;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-accent);
    border-radius: 12px;
    position: relative;
    box-shadow: var(--shadow-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon::after {
    content: '';
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-menu a.active::before {
    width: 100%;
    background: var(--gradient-accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.btn-link:hover {
    color: var(--primary);
}

.btn-primary-nav {
    background: var(--primary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary-nav::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.5s;
}

.btn-primary-nav:hover::before {
    left: 100%;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4);
    background: var(--primary-light);
}

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

.mobile-menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 10rem;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 25s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    top: -300px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #FFCB08 0%, #FFD633 100%);
    top: 30%;
    right: -250px;
    animation-delay: 8s;
    opacity: 0.3;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    bottom: -150px;
    left: 25%;
    animation-delay: 16s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.btn-primary-large {
    background: var(--primary);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary-large::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.5s;
}

.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    background: var(--primary-light);
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent);
    color: var(--primary);
    padding: 1.25rem 3rem;
    border: 2px solid var(--accent);
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-accent);
}

.btn-call i {
    font-size: 1.125rem;
}

.btn-call:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -5px rgba(255, 203, 8, 0.5);
}

/* Packages Section */
.packages {
    padding: 8rem 0;
    background: var(--bg-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.package-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem;
    padding-top: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    box-shadow: var(--shadow-sm);
}

.package-card::before {
    display: none;
}

.package-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
    transform: translateY(-12px);
}

.package-card.featured {
    border-color: var(--accent);
    border-width: 3px;
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFEF5 100%);
    transform: scale(1.02);
    overflow: visible;
}

.package-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.8125rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: var(--shadow-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
}

.package-name {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.package-speed {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.speed-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.03em;
}

.speed-unit {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.package-price {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.375rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.price-currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.package-info {
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.125rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--accent);
}

.btn-package {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1.25rem;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.btn-package::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-package:hover::before {
    width: 400px;
    height: 400px;
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    background: var(--primary-light);
}

.btn-package:active {
    transform: translateY(-1px);
}

.btn-featured {
    background: var(--accent);
    color: var(--primary);
}

.btn-featured:hover {
    background: var(--accent-light);
    color: var(--primary);
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.feature-icon {
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    box-shadow: var(--shadow-accent);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Application Form Section */
.application-form {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
}

.form-wrapper {
    max-width: 600px;
    margin: 4rem auto 0;
}

.application-form-content {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.application-form-content:hover {
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group:last-of-type {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
}

.required {
    color: #EF4444;
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 203, 8, 0.1);
    outline: none;
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234A4A4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.form-message {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.9375rem;
    text-align: center;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
    display: block;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
    display: block;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1.25rem;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.btn-submit::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.5s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    background: var(--primary-light);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: var(--shadow-primary);
}

.btn-submit i {
    font-size: 1.125rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--bg-white);
    position: relative;
}

.contact-wrapper {
    margin-top: 4rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px -5px rgba(255, 203, 8, 0.5);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.contact-card-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent);
    gap: 0.75rem;
}

.contact-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(4px);
}

.contact-form-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent);
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

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

.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: white;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 203, 8, 0.1);
    outline: none;
}

.contact-form .form-group textarea::placeholder {
    color: var(--text-light);
}

.contact-map-container {
    display: flex;
    flex-direction: column;
}

.contact-map-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.contact-map {
    flex: 1;
    min-height: 500px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.contact-map:hover {
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsive Contact Section */
@media (max-width: 968px) {
    .contact-form-map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 2rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .contact-map {
        min-height: 300px;
    }
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--accent);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.75rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 6rem 0 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.footer-logo-img {
    width: auto;
    height: 40px;
    object-fit: contain;
    display: block;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 12px;
    position: relative;
    box-shadow: var(--shadow-accent);
}

.footer-logo .logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 6px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
}

.footer-contact li span {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact i {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

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

.footer-bottom p {
    margin-bottom: 0.75rem;
}

.legal-notice {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-notice h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}

.legal-notice p {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.legal-notice a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.legal-notice a:hover {
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    z-index: 2001;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2002;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.modal-close:hover {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(90deg);
    box-shadow: var(--shadow-accent);
}

.modal-header {
    padding: 3rem 3rem 2rem;
    border-bottom: 2px solid var(--border-light);
    text-align: center;
}

.modal-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.modal-speed {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.modal-body {
    padding: 2.5rem 3rem;
}

.modal-features,
.modal-details {
    margin-bottom: 2.5rem;
}

.modal-features:last-child,
.modal-details:last-child {
    margin-bottom: 0;
}

.modal-features h3,
.modal-details h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
}

.modal-features ul,
.modal-details ul {
    list-style: none;
}

.modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.modal-features li:last-child {
    margin-bottom: 0;
}

.modal-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.modal-details li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.modal-details li:last-child {
    margin-bottom: 0;
}

.modal-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.modal-footer {
    padding: 2rem 3rem 3rem;
    display: flex;
    gap: 1rem;
    border-top: 2px solid var(--border-light);
}

.btn-modal-close,
.btn-modal-call {
    flex: 1;
    padding: 1.125rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-modal-close {
    background: var(--bg-light);
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-modal-close:hover {
    background: var(--border-light);
    transform: translateY(-2px);
}

.btn-modal-call {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-primary);
}

.btn-modal-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    background: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .topbar {
        padding: 0.625rem 0;
    }

    .topbar-phone {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }

    .topbar-phone span:first-of-type {
        display: none;
    }

    .phone-number {
        font-size: 0.875rem;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .nav-menu.mobile-active,
    .nav-actions.mobile-active {
        display: flex;
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 1.5rem;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .nav-menu.mobile-active {
        list-style: none;
        padding: 2rem;
        margin: 0;
    }
    
    .nav-menu.mobile-active li {
        width: 100%;
    }
    
    .nav-menu.mobile-active a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-light);
        font-size: 1.125rem;
    }
    
    .nav-actions.mobile-active {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 5rem 0 6rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .title-line {
        display: inline;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta a {
        width: 100%;
        justify-content: center;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .modal-content {
        max-width: 100%;
        margin: 1rem;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .application-form {
        padding: 5rem 0;
    }

    .application-form-content {
        padding: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .contact-form .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-wrapper {
        max-width: 100%;
        margin: 3rem auto 0;
    }
    
    .nav-wrapper {
        padding: 1rem 0;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .footer-logo-img {
        height: 28px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-notice {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .legal-notice h5 {
        font-size: 1rem;
    }
    
    .legal-notice p {
        font-size: 0.8125rem;
    }
    
    .cookie-consent {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    
    .cookie-consent-content {
        padding: 1.25rem;
    }
    
    .cookie-consent-title {
        font-size: 1rem;
    }
    
    .cookie-consent-text {
        font-size: 0.875rem;
    }
    
    .cookie-consent-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-consent-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.cookie-consent-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.cookie-consent-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    justify-content: flex-end;
}

.cookie-consent-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-consent-btn-accept {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-accent);
}

.cookie-consent-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}


@media (max-width: 768px) {
    .cookie-consent {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-btn {
        width: 100%;
    }
}

/* Floating Action Bar */
.floating-action-bar {
    position: fixed;
    left: -100%;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-action-bar.show {
    left: 0;
}

.floating-bar-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.floating-bar-close:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #1a1a1a;
    transform: scale(1.1);
}

.floating-bar-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 160px;
}

.floating-bar-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.floating-bar-phone {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-accent);
}

.floating-bar-phone:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.floating-bar-apply {
    background: #f3f4f6;
    color: #1a1a1a;
}

.floating-bar-apply:hover {
    background: #e5e7eb;
    transform: translateX(4px);
}

.floating-bar-btn i {
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .floating-action-bar {
        top: auto;
        bottom: 2rem;
        left: 1rem;
        right: 1rem;
        transform: translateY(0);
        border-radius: 16px;
        width: auto;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .floating-action-bar.show {
        left: 1rem;
        right: 1rem;
    }
    
    .floating-bar-content {
        flex-direction: row;
        min-width: auto;
    }
    
    .floating-bar-btn {
        flex: 1;
        justify-content: center;
    }
    
    .floating-bar-close {
        top: -12px;
        right: -12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.625rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-partner-badge {
        font-size: 0.75rem !important;
        padding: 0.625rem 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-partner-badge span {
        font-size: 0.75rem !important;
    }

    .speed-number {
        font-size: 3rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .package-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Policy Pages Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .policy-section {
        padding: 1.5rem !important;
        margin-top: 1rem !important;
        border-radius: 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .policy-content {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .policy-content h1 {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    .policy-content h2 {
        font-size: 1.25rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.4 !important;
    }
    
    .policy-content h3 {
        font-size: 1.1rem !important;
        margin-top: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .policy-content p {
        font-size: 0.9375rem !important;
        line-height: 1.7 !important;
        margin-bottom: 0.875rem !important;
    }
    
    .policy-content ul {
        margin-left: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .policy-content li {
        font-size: 0.9375rem !important;
        line-height: 1.7 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .policy-content ol {
        margin-left: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .policy-content ol li {
        font-size: 0.9375rem !important;
        line-height: 1.7 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .policy-content table {
        width: 100% !important;
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 1rem 0 !important;
    }
    
    .policy-content table th,
    .policy-content table td {
        padding: 0.5rem !important;
        font-size: 0.875rem !important;
        white-space: nowrap !important;
    }
    
    .contact-info {
        padding: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .contact-info h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .contact-info p {
        font-size: 0.875rem !important;
        margin-bottom: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .policy-section {
        padding: 1rem !important;
        margin-top: 0.5rem !important;
    }
    
    .policy-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .policy-content h2 {
        font-size: 1.125rem !important;
        margin-top: 1.25rem !important;
    }
    
    .policy-content h3 {
        font-size: 1rem !important;
    }
    
    .policy-content p {
        font-size: 0.875rem !important;
    }
    
    .policy-content ul,
    .policy-content ol {
        margin-left: 1rem !important;
    }
    
    .policy-content li {
        font-size: 0.875rem !important;
    }
    
    .policy-content table {
        font-size: 0.75rem !important;
    }
    
    .policy-content table th,
    .policy-content table td {
        padding: 0.375rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Special gradient box in hakkimizda.html */
    .policy-content > div[style*="gradient"],
    .policy-content > div[style*="linear-gradient"] {
        padding: 1.25rem !important;
        margin-bottom: 1.5rem !important;
        text-align: left !important;
    }
    
    .policy-content > div[style*="gradient"] h2,
    .policy-content > div[style*="linear-gradient"] h2 {
        font-size: 1.125rem !important;
        margin-bottom: 0.75rem !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    
    .policy-content > div[style*="gradient"] h2 i,
    .policy-content > div[style*="linear-gradient"] h2 i {
        font-size: 1rem !important;
        margin-right: 0.375rem !important;
    }
    
    .policy-content > div[style*="gradient"] p,
    .policy-content > div[style*="linear-gradient"] p {
        font-size: 0.875rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }
    
    .policy-content > div[style*="gradient"] a,
    .policy-content > div[style*="linear-gradient"] a {
        font-size: 0.8125rem !important;
        display: block !important;
        text-align: center !important;
        margin-top: 0.75rem !important;
        word-break: break-word !important;
        padding: 0.5rem 0 !important;
    }
}

@media (max-width: 480px) {
    /* Special gradient box in hakkimizda.html - smaller screens */
    .policy-content > div[style*="gradient"],
    .policy-content > div[style*="linear-gradient"] {
        padding: 1rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .policy-content > div[style*="gradient"] h2,
    .policy-content > div[style*="linear-gradient"] h2 {
        font-size: 1rem !important;
        margin-bottom: 0.625rem !important;
    }
    
    .policy-content > div[style*="gradient"] p,
    .policy-content > div[style*="linear-gradient"] p {
        font-size: 0.8125rem !important;
        margin-bottom: 0.625rem !important;
    }
    
    .policy-content > div[style*="gradient"] a,
    .policy-content > div[style*="linear-gradient"] a {
        font-size: 0.75rem !important;
    }
}
