:root {
    --primary-blue: #1D63DC;
    --dark-blue: #03396c;
    --medium-blue: #005b96;
    --light-blue: #6497b1;
    --pale-blue: #b3cde0;
    --bg-blue: #F2F7FF;
    --white: #FFFFFF;
    --text-dark: #1a1a2e;
    --text-gray: #4a5568;
    --gradient-primary: linear-gradient(135deg, #1D63DC 0%, #03396c 100%);
    --gradient-light: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(29, 99, 220, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 99, 220, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--bg-blue);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    width: 100%;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-animation {
    animation: float 6s ease-in-out infinite;
}

.shield-svg {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-blue);
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    background: var(--bg-blue);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* How it Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-blue);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(29, 99, 220, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.step p {
    color: var(--text-gray);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-blue);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: var(--dark-blue);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.savings {
    margin-bottom: 2rem;
    font-weight: 600;
    opacity: 0.9;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Quick Links */
.quick-links {
    padding: 60px 0;
    background: var(--white);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-link-card {
    background: var(--bg-blue);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.quick-link-card p {
    color: var(--text-gray);
}

/* Setup Instructions */
.setup-instructions {
    padding: 60px 0;
    background: var(--bg-blue);
}

.setup-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-blue);
}

.section-header h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    flex: 1;
}

.section-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.setup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.setup-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark-blue);
}

.setup-text h3:first-child {
    margin-top: 0;
}

.steps-list {
    padding-left: 20px;
    margin-bottom: 2rem;
}

.steps-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.steps-list ul {
    margin-top: 0.5rem;
    margin-left: 20px;
}

.steps-list ul li {
    margin-bottom: 0.5rem;
}

.setup-example {
    background: var(--bg-blue);
    padding: 30px;
    border-radius: var(--radius-md);
}

.example-placeholder {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px dashed var(--light-blue);
}

.placeholder-image {
    margin-bottom: 15px;
}

.placeholder-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

.example-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    color: #856404;
}

.example-note strong {
    display: block;
    margin-bottom: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--bg-blue);
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-blue);
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .shield-svg {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .setup-content {
        grid-template-columns: 1fr;
    }
    
    .setup-section {
        padding: 30px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1) translateY(-5px);
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Additional styles for new pages */

/* Guarantee Badge */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Refund Note */
.refund-note {
    font-size: 0.875rem;
    color: var(--white);
    margin-top: 15px;
    font-style: italic;
}

.refund-note.black {
    color: var(--black);
}

.pricing-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 30px;
    text-align: center;
}

/* Link to Setup */
.link-to-setup {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.link-to-setup:hover {
    text-decoration: underline;
}

/* Apps Section */
.apps-section {
    padding: 80px 0;
    background: var(--bg-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.app-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.app-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.app-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.app-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Video Placeholder */
.video-section {
    margin-bottom: 40px;
}

.video-placeholder {
    background: linear-gradient(135deg, #1D63DC 0%, #03396c 100%);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: var(--white);
}

.video-note {
    display: block;
    margin-top: 10px;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Download Links */
.download-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-blue);
}

.download-links h4 {
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.download-link {
    display: block;
    padding: 10px 0;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-link:hover {
    color: var(--dark-blue);
    padding-left: 5px;
}

/* Servers Section */
.servers-section {
    padding: 80px 0;
    background: var(--white);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.server-card {
    background: var(--bg-blue);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.server-flag {
    font-size: 4rem;
    margin-bottom: 20px;
}

.server-card h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.server-location {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.server-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-md);
}

.server-status {
    color: #4CAF50;
    font-weight: 600;
}

.server-speed {
    color: var(--primary-blue);
    font-weight: 600;
}

.server-features {
    list-style: none;
    text-align: left;
}

.server-features li {
    padding: 8px 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.server-note {
    background: var(--bg-blue);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
}

.server-note h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

/* Features Detailed */
.features-detailed {
    padding: 80px 0;
    background: var(--white);
}

.feature-detailed-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--bg-blue);
}

.feature-detailed-item.reverse {
    direction: rtl;
}

.feature-detailed-item.reverse > * {
    direction: ltr;
}

.feature-icon-large {
    font-size: 5rem;
    text-align: center;
}

.feature-detailed-item h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.feature-detailed-item p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* FAQ Page */
.faq-page {
    padding: 80px 0;
    background: var(--bg-blue);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-page {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.faq-item-page h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.faq-item-page p {
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-item-page ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-item-page li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

.faq-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin-top: 50px;
    color: var(--white);
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Feedback Section */
.feedback-section {
    padding: 80px 0;
    background: var(--bg-blue);
}

.feedback-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.feedback-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.feedback-info > p {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 2rem;
}

.contact-method h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.contact-method p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.feedback-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--pale-blue);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn-full {
    width: 100%;
}

.form-success {
    margin-top: 20px;
    padding: 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: var(--radius-sm);
    color: #155724;
    text-align: center;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background: var(--white);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--dark-blue);
    margin: 40px 0 20px;
    font-size: 1.75rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-text li {
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* FAQ Preview */
.faq-preview {
    padding: 80px 0;
    background: var(--bg-blue);
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-container {
        grid-template-columns: 1fr;
    }
    
    .feature-detailed-item,
    .feature-detailed-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
    }
    
    .video-placeholder {
        padding: 60px 20px;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
}