/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #f97316;
    --danger: #dc2626;
    --success: #10b981;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --border-radius: 16px;
    --card-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    --hover-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1), 0 15px 15px -5px rgba(0, 0, 0, 0.05);
}

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: white;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== TYPOGRAPHY ==================== */
.accent {
    color: var(--accent);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
}

.logo a {
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    margin-top: 4px;
}

.nav-badges {
    display: flex;
    gap: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.badge i {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-900);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 500;
}

.mobile-badges {
    margin-top: 20px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 100px;
    margin-bottom: 30px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hero-badge i {
    color: #ef4444;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-300);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
}

.hero-cta {
    margin-top: 40px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-secondary {
    width: 100%;
    padding: 16px;
    background: var(--gray-300);
    color: var(--gray-600);
    border: none;
    border-radius: 100px;
    font-weight: 600;
    cursor: not-allowed;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 80px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.service-card.bundle-card {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: white;
}

.service-card.bundle-card .service-title,
.service-card.bundle-card .service-price,
.service-card.bundle-card .service-features li {
    color: white;
}

.service-card.bundle-card .service-features li i {
    color: var(--success);
}

.service-popular {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 4px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 34px;
    color: white;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1;
}

.service-card.bundle-card .service-price {
    color: var(--accent);
}

.old-price {
    font-size: 20px;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: 12px;
}

.current-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--gray-700);
}

.service-features li i {
    color: var(--success);
    font-size: 18px;
    margin-top: 2px;
}

.service-features li strong {
    color: var(--gray-900);
}

.service-card.bundle-card .service-features li strong {
    color: white;
}

/* PayPal Button Container */
.paypal-button-container {
    margin: 20px 0;
    min-height: 50px;
}

.payment-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 15px;
}

.payment-note i {
    color: var(--success);
    margin-right: 6px;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 30px;
    font-size: 24px;
    color: var(--gray-300);
    font-weight: 300;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--gray-600);
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: var(--gray-600);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 60px 0 40px;
    background: var(--gray-900);
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-certifications {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-certifications span {
    font-size: 13px;
    color: var(--gray-400);
}

.footer-certifications i {
    color: var(--success);
    margin-right: 5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-column i {
    width: 20px;
    margin-right: 8px;
    color: var(--primary);
}

.footer-column p {
    color: var(--gray-400);
    font-size: 14px;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: var(--gray-400);
    font-size: 13px;
    margin: 0 0 5px;
}

.copyright-details {
    font-size: 12px;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 13px;
}

.footer-legal a:hover {
    color: white;
}

.separator {
    color: var(--gray-600);
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: white;
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-text i {
    font-size: 24px;
    color: var(--accent);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-decline,
.btn-cookie-revoke {
    padding: 10px 24px;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--success);
    color: white;
}

.btn-cookie-accept:hover {
    background: #0d9488;
}

.btn-cookie-decline {
    background: var(--gray-700);
    color: white;
}

.btn-cookie-decline:hover {
    background: var(--gray-600);
}

.btn-cookie-revoke {
    background: var(--gray-200);
    color: var(--gray-800);
    margin-top: 20px;
}

.btn-cookie-revoke:hover {
    background: var(--gray-300);
    transform: translateY(-2px);
}

/* ==================== MODALS ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9998;
    display: none;
}

.modal-overlay.active {
    display: block;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 30px 40px;
    border-bottom: 2px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-500);
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--danger);
    background: var(--gray-100);
}

.modal-body {
    padding: 40px;
}

.modal-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 30px 0 15px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 20px 0 10px;
}

.modal-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 15px;
}

.modal-body ul {
    margin: 15px 0 25px;
    padding-left: 25px;
}

.modal-body li {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.modal-body li strong {
    color: var(--gray-900);
}

.modal-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    justify-content: center;
}

.modal-stat {
    text-align: center;
}

.modal-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.modal-stat span:last-child {
    font-size: 14px;
    color: var(--gray-600);
}

/* ==================== PAGE HEADER (for legal pages) ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ==================== LEGAL CONTENT PAGES ==================== */
.legal-content {
    padding: 60px 0;
    background: white;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.legal-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 40px 0 20px;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 30px 0 15px;
}

.legal-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
    margin: 20px 0 10px;
}

.legal-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.legal-body ul, 
.legal-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-body li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.legal-body strong {
    color: var(--gray-900);
}

.legal-body .effective-date {
    background: var(--gray-100);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
}

.legal-body a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-body a:hover {
    text-decoration: underline;
}

.legal-footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
}

.legal-footer-note i {
    color: var(--primary);
    font-size: 20px;
}

.legal-footer-note p {
    margin: 0;
    font-size: 14px;
}

/* ==================== ABOUT PAGE ==================== */
.about-page {
    padding: 60px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-story h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 20px;
}

.about-story h2:not(:first-child) {
    margin-top: 40px;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    gap: 20px;
}

.about-stats .stat-card {
    background: var(--gray-50);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.about-stats .stat-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-stats .stat-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 5px;
}

.about-stats .stat-card p {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0;
}

.team-section {
    margin: 60px 0;
}

.team-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 40px;
    text-align: center;
}

.team-card {
    display: flex;
    gap: 30px;
    background: var(--gray-50);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 50px;
    color: white;
}

.team-info h4 {
    font-size: 20px;
    margin: 0 0 5px;
}

.team-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.team-cert {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.team-cert span {
    font-size: 13px;
    color: var(--gray-600);
}

.team-cert i {
    color: var(--success);
    margin-right: 5px;
}

.values-section {
    margin: 60px 0;
}

.values-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.value-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ==================== COOKIE TABLE STYLES ==================== */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.cookie-table thead {
    background: var(--primary);
    color: white;
}

.cookie-table th {
    text-align: left;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-700);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover td {
    background: var(--gray-50);
}

.cookie-table td strong {
    color: var(--gray-900);
    font-weight: 600;
}

.cookie-controls {
    margin: 30px 0;
    text-align: center;
}

/* ==================== GDPR PAGE STYLES ==================== */
.gdpr-highlight {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.gdpr-highlight i {
    font-size: 48px;
    color: var(--success);
}

.gdpr-highlight p {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-800);
    margin: 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.principle-card {
    background: var(--gray-50);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.principle-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.principle-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.legal-bases {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.basis-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
}

.basis-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.basis-item h4 i {
    color: var(--primary);
    margin-right: 10px;
}

.basis-item p {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 10px;
    line-height: 1.6;
}

.rights-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.rights-table th {
    background: var(--primary);
    color: white;
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.rights-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-700);
}

.rights-table tr:last-child td {
    border-bottom: none;
}

.rights-table tr:hover td {
    background: var(--gray-50);
}

.transfer-mechanisms {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.mechanism {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--gray-50);
    padding: 25px;
    border-radius: var(--border-radius);
}

.mechanism i {
    font-size: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.mechanism h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.mechanism p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.dpo-card {
    background: linear-gradient(135deg, var(--gray-50), white);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin: 30px 0;
    border: 1px solid var(--gray-200);
}

.dpo-card i {
    font-size: 48px;
    color: var(--primary);
}

.dpo-card p {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.breach-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    position: relative;
}

.breach-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: var(--gray-300);
    z-index: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.timeline-item > div {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.timeline-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.sa-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin: 30px 0;
    border: 1px solid var(--gray-200);
    box-shadow: var(--card-shadow);
}

.sa-card i {
    font-size: 48px;
    color: var(--primary);
}

.sa-card .sa-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
    font-style: italic;
}

.data-table,
.processors-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.data-table th,
.processors-table th {
    background: var(--primary);
    color: white;
    padding: 15px;
    font-weight: 600;
    font-size: 13px;
    text-align: left;
}

.data-table td,
.processors-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 13px;
    color: var(--gray-700);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.security-item {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.security-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.security-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.security-item p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.gdpr-badge-large {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 35px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.gdpr-badge-large i {
    font-size: 64px;
    color: var(--success);
}

.gdpr-badge-large h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.gdpr-badge-large p {
    font-size: 16px;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.6;
}

/* ==================== PRIVACY PAGE STYLES ==================== */
.privacy-intro {
    background: linear-gradient(135deg, #e8f0fe, #d4e4fc);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.privacy-intro i {
    font-size: 48px;
    color: var(--primary);
}

.privacy-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    margin: 0;
    font-weight: 500;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.privacy-table th {
    background: var(--primary);
    color: white;
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.privacy-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-700);
}

.legal-basis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.legal-basis-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.legal-basis-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.legal-basis-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.legal-basis-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.legal-basis-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.6;
}

.purposes-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.purpose-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.purpose-icon i {
    font-size: 24px;
    color: var(--success);
}

.purpose-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.purpose-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.retention-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.retention-table th {
    background: var(--primary);
    color: white;
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.retention-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-700);
}

.rights-tabs {
    margin: 30px 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.rights-tab {
    border-bottom: 1px solid var(--gray-200);
}

.rights-tab:last-child {
    border-bottom: none;
}

.tab-toggle {
    display: none;
}

.tab-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--gray-50);
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-800);
    transition: background 0.3s ease;
}

.tab-label:hover {
    background: var(--gray-100);
}

.tab-label i {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: var(--primary);
}

.tab-toggle:checked + .tab-label i {
    transform: rotate(90deg);
}

.tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    padding: 0 20px;
}

.tab-toggle:checked + .tab-label + .tab-content {
    max-height: 1000px;
    padding: 20px;
}

.rights-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.rights-detail-table th {
    text-align: left;
    padding: 12px;
    background: var(--gray-100);
    font-weight: 600;
    font-size: 14px;
}

.rights-detail-table td {
    padding: 12px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-700);
}

.rights-footer {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    font-size: 15px;
}

.transfer-safe {
    background: linear-gradient(135deg, #f0f9ff, #e6f3fe);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.transfer-safe h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.transfer-safe h4 i {
    color: var(--primary);
    margin-right: 10px;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.security-badge {
    background: var(--gray-50);
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.security-badge i {
    color: var(--success);
    font-size: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.contact-method-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.contact-method-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-method-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.contact-method-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.contact-method-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.privacy-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 20px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.privacy-compliance {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.privacy-compliance i {
    color: var(--success);
    font-size: 18px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-badges {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
    }
    
    /* Legal Pages Responsive */
    .page-header h1 {
        font-size: 32px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-body {
        padding: 20px;
    }
    
    .legal-body h2 {
        font-size: 24px;
    }
    
    .legal-basis-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-table,
    .retention-table,
    .rights-detail-table,
    .cookie-table,
    .rights-table,
    .data-table,
    .processors-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .privacy-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .gdpr-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .mechanism {
        flex-direction: column;
        text-align: center;
    }
    
    .dpo-card {
        flex-direction: column;
        text-align: center;
    }
    
    .sa-card {
        flex-direction: column;
        text-align: center;
    }
    
    .breach-timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gdpr-badge-large {
        flex-direction: column;
        text-align: center;
    }
    
    .security-badges {
        justify-content: center;
    }
    
    .privacy-footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* Audit Input Fields */
.audit-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.audit-url,
.audit-email {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.audit-url:focus,
.audit-email:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.audit-url::placeholder,
.audit-email::placeholder {
    color: var(--gray-400);
    font-size: 13px;
}

.service-card.bundle-card .audit-url,
.service-card.bundle-card .audit-email {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gray-600);
    color: white;
}

.service-card.bundle-card .audit-url::placeholder,
.service-card.bundle-card .audit-email::placeholder {
    color: var(--gray-400);
}
/* ==================== ABOUT PAGE ENHANCEMENTS ==================== */

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--gray-400);
}

.breadcrumb a {
    color: var(--gray-400);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb [aria-current="page"] {
    color: white;
    font-weight: 500;
}

/* Mission Statement */
.mission-statement {
    padding: 60px 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-text .lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 20px 0 30px;
}

.mission-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

.trust-badge-large {
    background: linear-gradient(135deg, #f0f9ff, #e6f3fe);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-badge-large i {
    font-size: 48px;
    color: var(--primary);
}

.trust-badge-large strong {
    display: block;
    font-size: 18px;
    color: var(--gray-900);
}

.trust-badge-large span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* Timeline */
.our-story {
    padding: 80px 0;
    background: var(--gray-50);
}

.story-timeline {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 100px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-align: right;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -45px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.team-member.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.team-member.featured::before {
    content: 'LEAD AUDITOR';
    position: absolute;
    top: -12px;
    left: 30px;
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-photo i {
    font-size: 60px;
    color: white;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.member-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.badge-cert {
    background: var(--gray-100);
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 12px;
    color: var(--gray-700);
}

.badge-cert i {
    color: var(--success);
    margin-right: 4px;
}

.member-bio {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.member-social a {
    color: var(--gray-500);
    font-size: 18px;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--primary);
}

.team-note {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-note i {
    font-size: 32px;
    color: var(--success);
}

.team-note p {
    font-size: 16px;
    color: var(--gray-800);
    margin: 0;
}

/* Value Details */
.value-details {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.value-details li {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.value-details li i {
    color: var(--success);
    font-size: 12px;
}

/* Comparison Grid */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 40px auto;
}

.comparison-col {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.comparison-col.traditional {
    background: var(--gray-50);
}

.comparison-col.ada-check {
    background: linear-gradient(135deg, #e8f0fe, #d4e4fc);
    border: 2px solid var(--primary);
}

.comparison-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-col ul {
    list-style: none;
    padding: 0;
}

.comparison-col li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-col i.fa-check {
    color: var(--success);
}

.comparison-col i.fa-times {
    color: var(--danger);
}

.why-cta {
    text-align: center;
    margin-top: 30px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.stars i {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray-600);
}

/* Certifications */
.certifications {
    padding: 40px 0;
    background: white;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.cert-item i {
    color: var(--primary);
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

.cta-note i {
    margin-right: 5px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .story-timeline::before {
        left: 50px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-year {
        width: auto;
        text-align: left;
    }
    
    .timeline-year::after {
        right: auto;
        left: -20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .team-note {
        flex-direction: column;
        text-align: center;
    }
    
    .cert-grid {
        gap: 20px;
    }
}
/* ==================== CONTACT PAGE STYLES ==================== */

.contact-section {
    padding: 60px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.contact-form-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.contact-form-container > p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

.btn-submit i {
    margin-left: 8px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message i {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.success-message p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.contact-detail a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 3px;
}

.contact-social {
    border-top: 1px solid var(--gray-200);
    padding-top: 25px;
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* FAQ Preview */
.contact-faq-preview {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 30px;
    border-radius: var(--border-radius);
}

.contact-faq-preview h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.faq-preview-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.faq-preview-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-preview-item p {
    margin: 0;
}

.faq-preview-item p:first-child {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.faq-preview-item p:last-child {
    color: var(--gray-600);
    font-size: 14px;
}

.faq-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}

.faq-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.faq-link:hover i {
    transform: translateX(3px);
}

/* Why Contact */
.why-contact {
    padding: 60px 0;
    background: var(--gray-50);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.reason-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.reason-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .contact-form-container h2 {
        font-size: 24px;
    }
    
    .checkbox-group {
        align-items: flex-start;
    }
    
    .checkbox-group input {
        margin-top: 2px;
    }
}
/* ==================== NEW STYLES FOR UPDATED INDEX ==================== */

/* Learn More Link */
.learn-more {
    text-align: center;
    margin: 15px 0 10px;
}

.learn-more a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.learn-more a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.learn-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.learn-more a:hover i {
    transform: translateX(3px);
}

/* Service Card Adjustments */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .btn-paypal {
    margin-top: auto;
}

/* Trust Badges Section */
.trust-badges {
    padding: 40px 0;
    background: white;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

.trust-item i {
    color: var(--success);
    font-size: 18px;
}

/* FAQ More Link */
.faq-more {
    text-align: center;
    margin-top: 40px;
}

.faq-more a {
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gray-50);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.faq-more a:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

.faq-more a:hover i {
    transform: translateX(3px);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gray-50), white);
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: var(--gray-600);
}

.cta-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.cta-section a:hover {
    text-decoration: underline;
}

/* Footer Column Links */
.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-column i {
    width: 20px;
    margin-right: 5px;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .trust-grid {
        gap: 20px;
    }
    
    .trust-item {
        width: calc(50% - 20px);
        justify-content: center;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
}
/* ==================== SERVICE PAGES STYLES ==================== */

/* Service Page Header */
.service-page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 0;
    margin-top: 80px;
}

.service-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    max-width: 900px;
}

.service-page-header .subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
}

/* Service Intro Section */
.service-intro {
    padding: 60px 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.intro-text .section-tag {
    margin-bottom: 15px;
}

.intro-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text .lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 25px;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-700);
}

.highlight-item i {
    color: var(--success);
    font-size: 18px;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--hover-shadow);
    border: 1px solid var(--gray-200);
    position: relative;
}

.price-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 4px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.price-note {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-700);
}

.price-features li i {
    color: var(--success);
    font-size: 16px;
}

.btn-paypal-large {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    background: #0070ba;
    color: white;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-paypal-large:hover {
    background: #005ea6;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 112, 186, 0.3);
}

.btn-paypal-large i {
    margin-right: 8px;
    font-size: 18px;
}

.secure-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 15px;
}

.secure-note i {
    color: var(--success);
    margin-right: 5px;
}

/* What We Check Section */
.what-we-check {
    padding: 60px 0;
    background: var(--gray-50);
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.check-category {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.check-category h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-category h3 i {
    color: var(--primary);
}

.check-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.check-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.check-note {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-note i {
    font-size: 24px;
    color: var(--primary);
}

.check-note p {
    margin: 0;
    font-size: 15px;
    color: var(--gray-700);
}

/* Check Categories for GDPR */
.check-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.check-category-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.check-category-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-category-card h3 i {
    color: var(--primary);
}

.check-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-category-card li {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 0;
}

.check-category-card li ul {
    margin-top: 8px;
    margin-left: 20px;
}

.check-category-card li ul li {
    margin-bottom: 6px;
}

/* Check Grid 3 Column */
.check-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.check-item-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.check-item-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-item-card h3 i {
    color: var(--primary);
    font-size: 20px;
}

.check-item-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
}

.check-item-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-item-card li {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.check-item-card li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 5px;
}

/* What You Get / Deliverable Grid */
.what-you-get {
    padding: 60px 0;
    background: white;
}

.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.deliverable-card {
    background: var(--gray-50);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--gray-200);
}

.deliverable-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    background: white;
}

.deliverable-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.deliverable-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.deliverable-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Service Process */
.service-process {
    padding: 60px 0;
    background: var(--gray-50);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 30px;
    font-size: 24px;
    color: var(--gray-300);
    font-weight: 300;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 20px;
}

.process-step .step-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-600);
}

/* Service FAQ */
.service-faq {
    padding: 60px 0;
    background: white;
}

/* Responsive for Service Pages */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .check-grid,
    .check-grid-3col,
    .check-categories,
    .deliverable-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-page-header h1 {
        font-size: 32px;
    }
    
    .intro-text h2 {
        font-size: 28px;
    }
    
    .check-grid,
    .check-grid-3col,
    .check-categories,
    .deliverable-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .check-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-card .price {
        font-size: 36px;
    }
    
    .price-features li {
        font-size: 14px;
    }
}
/* ==================== BUTTON STYLES - IMPROVED CONTRAST ==================== */

/* Primary Button (Blue) - Used in navigation and CTAs */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb; /* Solid blue, not gradient for better contrast */
    color: #FFFFFF !important; /* Pure white, forced */
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: #1d4ed8; /* Darker blue on hover */
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary i {
    color: #FFFFFF !important;
}

/* PayPal Button - Standard Blue */
.btn-paypal {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    background: #0070ba; /* PayPal blue */
    color: #FFFFFF !important; /* Pure white */
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 6px rgba(0, 112, 186, 0.2);
}

.btn-paypal:hover {
    background: #005ea6; /* Darker PayPal blue */
    color: #FFFFFF !important;
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 112, 186, 0.3);
}

.btn-paypal i {
    color: #FFFFFF !important;
    margin-right: 8px;
}

/* Large PayPal Button - For Bundle Page */
.btn-paypal-large {
    display: inline-block;
    width: 100%;
    padding: 18px 32px;
    background: #0070ba;
    color: #FFFFFF !important;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 112, 186, 0.2);
}

.btn-paypal-large:hover {
    background: #005ea6;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 112, 186, 0.3);
}

.btn-paypal-large i {
    color: #FFFFFF !important;
    margin-right: 10px;
    font-size: 20px;
}

/* Bundle Button (Orange) - Special case */
.service-card.bundle-card .btn-paypal {
    background: #f97316; /* Solid orange */
    color: #FFFFFF !important; /* White text */
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
}

.service-card.bundle-card .btn-paypal:hover {
    background: #ea580c; /* Darker orange */
    color: #FFFFFF !important;
    box-shadow: 0 6px 12px rgba(249, 115, 22, 0.3);
}

/* Bundle Page Large Orange Button */
.btn-bundle-large {
    display: inline-block;
    background: #f97316; /* Solid orange */
    color: #FFFFFF !important; /* White text */
    padding: 20px 50px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
}

.btn-bundle-large:hover {
    background: #ea580c; /* Darker orange */
    color: #FFFFFF !important;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4);
}

.btn-bundle-large i {
    color: #FFFFFF !important;
    margin-right: 10px;
    font-size: 24px;
}

/* Outline Button - For secondary CTAs */
.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF !important;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #2563eb !important;
}

.btn-outline i {
    color: inherit;
}

/* Learn More Link */
.learn-more {
    text-align: center;
    margin: 15px 0 10px;
}

.learn-more a {
    color: #2563eb; /* Solid blue */
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.learn-more a:hover {
    color: #1d4ed8; /* Darker blue */
    text-decoration: underline;
}

.learn-more a i {
    color: #2563eb;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.learn-more a:hover i {
    transform: translateX(3px);
}

/* Payment Note - Text only, not a button */
.payment-note {
    text-align: center;
    font-size: 13px;
    color: #64748b; /* Gray */
    margin-top: 12px;
}

.payment-note i {
    color: #10b981; /* Green */
    margin-right: 5px;
}