/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.advertorialBanner {
    width: 100%;
    background: #f7c948;
    color: #222;
    text-align: center;
    font-family: 'Mulish', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 8px 0;
    border-bottom: 1px solid #e2b200;
    position: relative;
	text-transform: uppercase;
}
p:empty{display:none !important}
body {
    font-family: 'Mulish', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container and Layout */
.contentContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navigation */
.primaryNavigation {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(214, 235, 255, 0.3);
    transition: all 0.3s ease;
}

.navigationContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brandIdentity {
    display: flex;
    align-items: center;
}

.logoLink {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #333333;
    transition: transform 0.3s ease;
}

.logoLink:hover {
    transform: scale(1.05);
}

.brandLogo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #D6EBFF;
    padding: 8px;
}

.brandName {
    color: #333333;
}

.mainNavigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navigationMenu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navLink {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navLink:hover {
    background-color: #F2F2F2;
    transform: translateY(-2px);
}

.activeLink {
    background-color: #D6EBFF;
    color: #2563eb;
}

.mobileMenuToggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.mobileMenuToggle:hover {
    background-color: #F2F2F2;
}

/* Main Content Spacing */
.homePageWrapper,
.aboutContentWrapper,
.contactWrapper,
.legalContentWrapper {
/*     margin-top: 100px; */
}

/* Hero Section */
.primaryHero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #D6EBFF 0%, rgba(226, 219, 252, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.primaryHero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 249, 112, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.heroGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.heroContent {
    z-index: 2;
    position: relative;
}

.heroHeading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.heroSubheading {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.heroBenefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefitPoint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: #1e293b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefitPoint:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefitPoint i {
    color: #C2F970;
    font-size: 1.1rem;
}

.heroActions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.primaryActionButton,
.secondaryActionButton {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.primaryActionButton {
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(194, 249, 112, 0.3);
}

.primaryActionButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 249, 112, 0.4);
    background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
}

.secondaryActionButton {
    background-color: white;
    color: #1e293b;
    border: 2px solid #D6EBFF;
}

.secondaryActionButton:hover {
    background-color: #D6EBFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 235, 255, 0.3);
}

.heroDisclaimer {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

.heroVisual {
    position: relative;
    z-index: 2;
}

.heroImage {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.heroImage:hover {
    transform: scale(1.02);
}

/* Problem Solution Section */
.problemSolution {
    padding: 6rem 0;
    background-color: #F2F2F2;
}

.problemGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problemSide,
.solutionSide {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.problemSide:hover,
.solutionSide:hover {
    transform: translateY(-5px);
}

.problemTitle,
.solutionTitle {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.problemTitle {
    color: #dc2626;
}

.solutionTitle {
    color: #059669;
}

.problemList,
.solutionList {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problemItem,
.solutionItem {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.problemItem {
    background-color: #fef2f2;
}

.problemItem:hover {
    background-color: #fee2e2;
    transform: translateX(10px);
}

.solutionItem {
    background-color: #f0fdf4;
}

.solutionItem:hover {
    background-color: #dcfce7;
    transform: translateX(10px);
}

.problemItem i {
    color: #dc2626;
    font-size: 1.25rem;
}

.solutionItem i {
    color: #059669;
    font-size: 1.25rem;
}

.solutionButton {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    color: #1e293b;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.solutionButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 249, 112, 0.4);
}

/* Performance Metrics */
.performanceMetrics {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E2DBFC 0%, rgba(214, 235, 255, 0.3) 100%);
}

.metricsTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

.metricsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metricCard {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metricCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
}

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

.metricIcon {
    font-size: 2.5rem;
    color: #C2F970;
    margin-bottom: 1.5rem;
}

.metricValue {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.metricLabel {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1rem;
}

.metricDescription {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Tool Comparison */
.toolComparison {
    padding: 6rem 0;
    background-color: white;
}

.comparisonHeading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

.comparisonTable {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tableHeader {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #D6EBFF 0%, #E2DBFC 100%);
    padding: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.comparisonRow {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.3s ease;
}

.comparisonRow:hover {
    background-color: #f8fafc;
}

.featureColumn,
.featureCell {
    font-weight: 600;
    color: #1e293b;
}

.toolColumn {
    text-align: center;
    position: relative;
}

.toolColumn.recommended {
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    border-radius: 12px;
    padding: 1rem;
    margin: -0.5rem;
}

.toolName {
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.recommendedBadge {
    font-size: 0.8rem;
    background-color: #1e293b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}

.toolCell {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.toolCell.recommended {
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    border-radius: 8px;
    padding: 0.75rem;
    margin: -0.25rem;
    font-weight: 700;
}

.toolCell i {
    font-size: 1.1rem;
}

.fas.fa-check {
    color: #059669;
}

.fas.fa-times {
    color: #dc2626;
}

.fas.fa-minus {
    color: #f59e0b;
}

.fas.fa-star {
    color: #f59e0b;
}

.far.fa-star {
    color: #d1d5db;
}

.comparisonFooter {
    text-align: center;
    padding: 2rem 0;
}

.comparisonButton {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #D6EBFF 0%, #E2DBFC 100%);
    color: #1e293b;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comparisonButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 235, 255, 0.4);
}

/* Testimonials */
.realUserTestimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F2F2F2 0%, rgba(226, 219, 252, 0.2) 100%);
}

.testimonialsHeading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

.testimonialsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonialCard {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonialCard::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #C2F970;
    font-weight: 700;
    line-height: 1;
}

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

.testimonialQuote {
    margin-bottom: 2rem;
}

.testimonialQuote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
}

.testimonialAuthor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.authorPhoto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D6EBFF;
}

.authorName {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.authorDetails {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.authorRating {
    display: flex;
    gap: 0.25rem;
}

.authorRating i {
    color: #f59e0b;
    font-size: 0.9rem;
}

/* Installation Process */
.simpleInstallation {
    padding: 6rem 0;
    background-color: white;
}

.installationGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.installationHeading {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.installationDescription {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.installationSteps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stepItem {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stepItem:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stepNumber {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stepTitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stepDescription {
    color: #64748b;
    line-height: 1.6;
}

.installationButton {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    color: #1e293b;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.installationButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 249, 112, 0.4);
}

.installationImage {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.installationImage:hover {
    transform: scale(1.02);
}

/* Security Features */
.securityFeatures {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E2DBFC 0%, rgba(214, 235, 255, 0.3) 100%);
}

.featuresHeading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

.featuresGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.featureCard {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.featureIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #1e293b;
}

.featureTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.featureDescription {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Trust Indicators */
.trustIndicators {
    padding: 6rem 0;
    background-color: white;
}

.trustHeading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

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

.trustMetric {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trustMetric:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.metricNumber {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.metricText {
    font-size: 1.25rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.metricSubtext {
    font-size: 0.9rem;
    color: #94a3b8;
}

.guaranteeSection {
    text-align: center;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.guaranteeContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.guaranteeContent i {
    font-size: 3rem;
    color: #1e293b;
}

.guaranteeTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.guaranteeDescription {
    color: #1e293b;
    line-height: 1.6;
}

/* Final Call to Action */
.finalCallToAction {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.ctaHeading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.ctaDescription {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ctaBenefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.ctaBenefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.ctaBenefit i {
    color: #C2F970;
    font-size: 1.1rem;
}

.ctaActions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.primaryCtaButton {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    color: #1e293b;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.primaryCtaButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(194, 249, 112, 0.4);
}

.secondaryCtaButton {
    padding: 1.25rem 2.5rem;
    background-color: transparent;
    color: white;
    border: 2px solid #D6EBFF;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.secondaryCtaButton:hover {
    background-color: #D6EBFF;
    color: #1e293b;
    transform: translateY(-3px);
}

.ctaDisclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* About Page Specific Styles */
.companyIntroduction {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #D6EBFF 0%, rgba(226, 219, 252, 0.3) 100%);
}

.introductionGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sectionHeading {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.missionStatement {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1.5rem;
}

.additionalInfo {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
}

.missionImage {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.missionImage:hover {
    transform: scale(1.02);
}

/* Team Showcase */
.teamShowcase {
    padding: 6rem 0;
    background-color: white;
}

.showcaseTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

.expertGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.expertProfile {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.profileImage {
    margin-bottom: 1.5rem;
}

.teamPhoto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid #D6EBFF;
}

.expertName {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.expertRole {
    font-size: 1.1rem;
    font-weight: 600;
    color: #C2F970;
    margin-bottom: 1rem;
}

.expertDescription {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonialSection {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F2F2F2 0%, rgba(226, 219, 252, 0.2) 100%);
}

.testimonialHeading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

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

.customerReview {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.reviewContent {
    padding: 2rem;
}

.reviewText {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1.5rem;
}

.reviewerInfo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewerPhoto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D6EBFF;
}

.reviewerName {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.reviewerLocation {
    color: #64748b;
    font-size: 0.9rem;
}

/* Value Proposition */
.valueProposition {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E2DBFC 0%, rgba(214, 235, 255, 0.3) 100%);
}

.propositionGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.valueCard {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.cardIcon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #1e293b;
}

.cardTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cardDescription {
    color: #64748b;
    line-height: 1.7;
}

/* Contact Page Specific Styles */
.recommendedSolution {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #D6EBFF 0%, rgba(226, 219, 252, 0.3) 100%);
}

.solutionGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.primaryHeading {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.solutionDescription {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 2rem;
}

.benefitsList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefitItem {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefitItem:hover {
    background-color: white;
    transform: translateX(10px);
}

.benefitItem i {
    color: #059669;
    font-size: 1.25rem;
}

.actionButtons {
    display: flex;
    gap: 1rem;
}

.primaryAction {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    color: #1e293b;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primaryAction:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 249, 112, 0.4);
}

.secondaryAction {
    padding: 1rem 2rem;
    background-color: white;
    color: #1e293b;
    border: 2px solid #D6EBFF;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondaryAction:hover {
    background-color: #D6EBFF;
    transform: translateY(-3px);
}

.solutionImage {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solutionImage:hover {
    transform: scale(1.02);
}

/* Installation Process */
.installationProcess {
    padding: 6rem 0;
    background-color: white;
}

.processGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.processTitle {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

.stepsList {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.processStep {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.processStep:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.downloadForm {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.formContainer {
    padding: 3rem;
}

.formTitle {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.formSubtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
}

.contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inputGroup {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inputLabel {
    font-weight: 600;
    color: #1e293b;
}

.formInput,
.formSelect {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.formInput:focus,
.formSelect:focus {
    outline: none;
    border-color: #C2F970;
    box-shadow: 0 0 0 3px rgba(194, 249, 112, 0.1);
}

.submitButton {
    padding: 1.25rem;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    color: #1e293b;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submitButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 249, 112, 0.4);
}

.formDisclaimer {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    margin-top: 1rem;
}

/* Contact Information */
.contactInformation {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F2F2F2 0%, rgba(226, 219, 252, 0.2) 100%);
}

.contactTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

.contactGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contactMethod {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.methodIcon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #1e293b;
}

.methodTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.methodDetails {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.methodHours {
    color: #64748b;
    font-size: 0.9rem;
}

/* FAQ Section */
.frequentQuestions {
    padding: 6rem 0;
    background-color: white;
}

.questionsTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

.faqAccordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faqItem {
    background-color: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faqItem:hover {
    border-color: #C2F970;
    box-shadow: 0 5px 15px rgba(194, 249, 112, 0.2);
}

.faqQuestion {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: all 0.3s ease;
}

.faqQuestion:hover {
    background-color: #f8fafc;
}

.faqQuestion h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faqQuestion i {
    color: #64748b;
    transition: transform 0.3s ease;
}

.faqItem.active .faqQuestion i {
    transform: rotate(180deg);
}

.faqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faqItem.active .faqAnswer {
    max-height: 200px;
}

.faqAnswer p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Legal Document Styles */
.legalDocument {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.documentHeader {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.documentTitle {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.lastUpdated {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.policyIntro,
.termsIntro,
.disclaimerIntro {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.7;
}

.documentSection {
    margin-bottom: 3rem;
}

.sectionHeading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.sectionContent {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Legal Content Specific Styles */
.informationTypes,
.usagePurposes,
.sharingScenarios,
.securityMeasures,
.privacyRights,
.retentionPolicies,
.cookieTypesList,
.managementOption,
.servicesList,
.responsibilitiesList,
.thirdPartyNotices,
.intellectualProperty,
.disclaimerItems,
.indemnificationItems,
.changeNotifications,
.softwareDisclaimers,
.financialDisclaimers,
.securityDisclaimers,
.legalNotices,
.testimonialDisclaimers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.informationType,
.purposeItem,
.scenarioItem,
.rightItem,
.cookieType,
.managementOption,
.serviceItem,
.responsibilityItem,
.noticeItem,
.propertyItem,
.disclaimerItem,
.softwareDisclaimer,
.financialDisclaimer,
.securityItem,
.legalNotice,
.testimonialDisclaimer {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid #C2F970;
    transition: all 0.3s ease;
}

.informationType:hover,
.purposeItem:hover,
.scenarioItem:hover,
.rightItem:hover,
.cookieType:hover,
.managementOption:hover,
.serviceItem:hover,
.responsibilityItem:hover,
.noticeItem:hover,
.propertyItem:hover,
.disclaimerItem:hover,
.softwareDisclaimer:hover,
.financialDisclaimer:hover,
.securityItem:hover,
.legalNotice:hover,
.testimonialDisclaimer:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.typeHeading,
.purposeTitle,
.scenarioTitle,
.rightTitle,
.cookieTypeName,
.optionTitle,
.responsibilityTitle,
.noticeTitle,
.propertyTitle,
.disclaimerTitle,
.securityTitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.typeDescription,
.purposeDescription,
.scenarioDescription,
.rightDescription,
.cookieTypeDescription,
.optionDescription,
.responsibilityDescription,
.noticeDescription,
.propertyDescription,
.disclaimerDescription,
.securityDescription {
    color: #64748b;
    line-height: 1.6;
}

.typeList,
.thirdPartyList,
.prohibitedList,
.supportLimitations,
.liabilityList,
.terminationReasons,
.notificationMethods,
.impactList,
.externalLinksDisclaimer {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.typeItem,
.thirdPartyItem,
.prohibitedItem,
.limitationItem,
.liabilityItem,
.terminationReason,
.notificationItem,
.impactItem,
.externalItem {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    line-height: 1.6;
}

.typeItem:last-child,
.thirdPartyItem:last-child,
.prohibitedItem:last-child,
.limitationItem:last-child,
.liabilityItem:last-child,
.terminationReason:last-child,
.notificationItem:last-child,
.impactItem:last-child,
.externalItem:last-child {
    border-bottom: none;
}

.securityMeasures {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.securityItem {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.securityItem:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.securityItem i {
    color: #059669;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.securityText,
.securityContent {
    color: #334155;
    line-height: 1.6;
}

.securityNote,
.rightsNote,
.liabilityNote,
.terminationNote,
.continuedUse {
    background-color: #fef3c7;
    padding: 1rem;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.95rem;
    margin-top: 1rem;
    border-left: 4px solid #f59e0b;
}

.retentionItem {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 0.5rem;
}

.retentionType {
    font-weight: 600;
    color: #1e293b;
}

.retentionPeriod {
    color: #64748b;
}

/* Cookie Management */
.cookieTable {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.tableHeader {
    background: linear-gradient(135deg, #D6EBFF 0%, #E2DBFC 100%);
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 1rem;
    font-weight: 700;
    color: #1e293b;
}

.tableRow {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.tableRow:hover {
    background-color: #f8fafc;
}

.cookieName {
    font-weight: 600;
    color: #1e293b;
}

.cookiePurpose,
.cookieExpiry,
.cookieType {
    color: #64748b;
}

.consentManagement {
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.consentTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.consentDescription {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.manageConsentButton {
    padding: 1rem 2rem;
    background-color: #1e293b;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.manageConsentButton:hover {
    background-color: #334155;
    transform: translateY(-2px);
}

/* Contact Methods in Legal Pages */
.contactMethods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contactMethod {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contactMethod:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contactMethod i {
    color: #C2F970;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.methodTitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.methodInfo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.25rem;
}

.methodNote {
    color: #64748b;
    font-size: 0.9rem;
}

/* Footer Specific Styles */
.policyFooter,
.termsFooter,
.disclaimerFooter {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    text-align: center;
}

.policyEffective,
.termsEffective,
.disclaimerEffective,
.termsAcknowledgment,
.disclaimerAcknowledgment {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Footer */
.siteFooter {
    background-color: #1e293b;
    color: white;
    padding: 1rem 0 2rem;
}

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

.footerGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footerBrand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footerLogo {
    width: 35px;
    height: 35px;
    border-radius: 6px;
}

.footerBrandName {
    font-size: 1.25rem;
    font-weight: 700;
}

.companyDescription {
    line-height: 1.6;
}

.footerHeading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footerMenu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footerLink {
    color: #94a3b8;
    transition: all 0.3s ease;
}

.footerLink:hover {
    color: #C2F970;
    transform: translateX(5px);
}

.activeFooterLink {
    color: #C2F970;
    font-weight: 600;
}

.contactDetails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contactItem {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
	margin: 0;
}

.contactItem i {
    color: #C2F970;
    font-size: 1.1rem;
    width: 16px;
}

.footerBottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

.copyrightText {
    color: #64748b;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookieConsent.show {
    transform: translateY(0);
}

.cookieContent {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookieText {
    flex: 1;
    line-height: 1.6;
    color: #cbd5e1;
}

.cookieActions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookieLink {
    color: #C2F970;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookieLink:hover {
    color: #a3e635;
}

.acceptCookies {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    color: #1e293b;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acceptCookies:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 249, 112, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .heroGrid,
    .problemGrid,
    .introductionGrid,
    .solutionGrid,
    .installationGrid,
    .processGrid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .heroHeading {
        font-size: 3rem;
    }
    
    .heroActions {
        flex-direction: column;
        align-items: center;
    }
    
    .primaryActionButton,
    .secondaryActionButton {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .heroBenefits {
        justify-content: center;
    }
    
    .metricsGrid,
    .trustGrid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .ctaActions {
        flex-direction: column;
        align-items: center;
    }
    
    .primaryCtaButton,
    .secondaryCtaButton {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navigationMenu {
        display: none;
    }
    
    .mobileMenuToggle {
        display: block;
    }
    
    .homePageWrapper,
    .aboutContentWrapper,
    .contactWrapper,
    .legalContentWrapper {
/*         margin-top: 80px; */
    }
    
    .primaryHero {
        padding: 3rem 0 4rem;
    }
    
    .heroHeading {
        font-size: 2.5rem;
    }
    
    .heroSubheading {
        font-size: 1.1rem;
    }
    
    .heroBenefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefitPoint {
        width: 100%;
        justify-content: center;
    }
    
    .tableHeader,
    .comparisonRow {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featureColumn,
    .featureCell {
        font-weight: 700;
        background-color: #f1f5f9;
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .comparisonTable {
        overflow-x: auto;
    }
    
    .expertGrid,
    .testimonialsGrid,
    .reviewGrid,
    .featuresGrid {
        grid-template-columns: 1fr;
    }
    
    .ctaBenefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cookieContent {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookieActions {
        justify-content: center;
    }
    
    .legalDocument {
        padding: 2rem;
        margin: 1rem;
    }
    
    .documentTitle {
        font-size: 2.5rem;
    }
    
    .sectionHeading {
        font-size: 1.5rem;
    }
    
    .tableHeader,
    .tableRow {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .columnName {
        font-weight: 700;
        background-color: #f1f5f9;
        padding: 0.5rem;
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .contentContainer {
        padding: 0 15px;
    }
    
    .heroHeading {
        font-size: 2rem;
    }
    
    .metricsTitle,
    .comparisonHeading,
    .testimonialsHeading,
    .trustHeading,
    .ctaHeading {
        font-size: 2rem;
    }
    
    .metricValue {
        font-size: 2.5rem;
    }
    
    .primaryActionButton,
    .secondaryActionButton,
    .primaryCtaButton,
    .secondaryCtaButton {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .footerGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problemSide,
    .solutionSide {
        padding: 2rem;
    }
    
    .expertProfile,
    .testimonialCard,
    .featureCard,
    .valueCard {
        padding: 2rem;
    }
    
    .formContainer {
        padding: 2rem;
    }
    
    .legalDocument {
        padding: 1.5rem;
    }
    
    .documentTitle {
        font-size: 2rem;
    }
}

/* Additional CSS Styles for New Sections */

/* Modern Problems Section */
.modernProblemsSection {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, rgba(214, 235, 255, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.modernProblemsSection::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(226, 219, 252, 0.1) 0%, transparent 70%);
    animation: gentleFloat 25s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(90deg); }
}

.problemIntroduction {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.problemMainHeading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.problemIntroText {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.webProblemsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.problemsColumn,
.solutionColumn {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.problemsColumn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.solutionColumn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
}

.problemsColumn:hover,
.solutionColumn:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.problemsColumnTitle,
.solutionColumnTitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.problemsColumnTitle {
    color: #dc2626;
}

.solutionColumnTitle {
    color: #059669;
}

.problemsDescription,
.solutionDescription {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.problemsListContainer,
.solutionListContainer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.problemsListItem,
.solutionListItem {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
}

.problemsListItem {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 4px solid #dc2626;
}

.problemsListItem:hover {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    transform: translateX(8px);
}

.solutionListItem {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #059669;
}

.solutionListItem:hover {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    transform: translateX(8px);
}

.problemsListItem i {
    color: #dc2626;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.solutionListItem i {
    color: #059669;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.problemsImpact {
    font-size: 1rem;
    color: #475569;
    font-style: italic;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    line-height: 1.6;
}

/* User Choice Reasons Section */
.userChoiceReasons {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E2DBFC 0%, rgba(194, 249, 112, 0.1) 100%);
    position: relative;
}



.choiceReasonsHeading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.choiceReasonsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.choiceReasonCard {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(194, 249, 112, 0.2);
}

.choiceReasonCard:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #C2F970;
}

.reasonIcon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: #1e293b;
    box-shadow: 0 8px 20px rgba(194, 249, 112, 0.3);
    transition: all 0.3s ease;
}

.choiceReasonCard:hover .reasonIcon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(194, 249, 112, 0.4);
}

.reasonTitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.reasonDescription {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Getting Started Section */
.gettingStartedSection {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.gettingStartedSection::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 40%;
    height: 140%;
    background: radial-gradient(circle, rgba(194, 249, 112, 0.1) 0%, transparent 50%);
    animation: pulseGlow 20s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.gettingStartedGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gettingStartedHeading {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gettingStartedDescription {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.gettingStartedSteps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.gettingStartedStepItem {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(194, 249, 112, 0.2);
    transition: all 0.3s ease;
}

.gettingStartedStepItem:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
    border-color: #C2F970;
    box-shadow: 0 10px 30px rgba(194, 249, 112, 0.2);
}

.gettingStartedStepNumber {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(194, 249, 112, 0.3);
}

.gettingStartedStepTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.gettingStartedStepDescription {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

.gettingStartedButton {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #C2F970 0%, #a3e635 100%);
    color: #1e293b;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(194, 249, 112, 0.3);
}

.gettingStartedButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(194, 249, 112, 0.4);
    background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
}

.gettingStartedImage {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid rgba(194, 249, 112, 0.3);
}

.gettingStartedImage:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .webProblemsGrid,
    .gettingStartedGrid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .problemMainHeading,
    .choiceReasonsHeading,
    .gettingStartedHeading {
        font-size: 2.3rem;
    }
    
    .choiceReasonsGrid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .modernProblemsSection,
    .userChoiceReasons,
    .gettingStartedSection {
        padding: 4rem 0;
    }
    
    .problemsColumn,
    .solutionColumn {
        padding: 2rem;
    }
    
    .choiceReasonCard {
        padding: 2rem;
    }
    
    .problemMainHeading,
    .choiceReasonsHeading,
    .gettingStartedHeading {
        font-size: 2rem;
    }
    
    .problemIntroText,
    .gettingStartedDescription {
        font-size: 1.1rem;
    }
    
    .problemsColumnTitle,
    .solutionColumnTitle {
        font-size: 1.5rem;
    }
    
    .gettingStartedStepItem {
        padding: 1.5rem;
    }
    
    .gettingStartedStepNumber {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .problemsListItem,
    .solutionListItem {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .choiceReasonsGrid {
        grid-template-columns: 1fr;
    }
    
    .gettingStartedStepItem {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .reasonIcon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .problemMainHeading,
    .choiceReasonsHeading,
    .gettingStartedHeading {
        font-size: 1.8rem;
    }
}

/* Footer Disclaimer Styles */
.footerDisclaimer {
    margin: 2rem 0;
    padding: 0;
}

.disclaimerContent {
    background: linear-gradient(135deg, rgba(194, 249, 112, 0.1) 0%, rgba(226, 219, 252, 0.1) 100%);
    border: 2px solid rgba(194, 249, 112, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.disclaimerContent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #C2F970 0%, #E2DBFC 100%);
}

.disclaimerContent:hover {
    border-color: rgba(194, 249, 112, 0.4);
    background: linear-gradient(135deg, rgba(194, 249, 112, 0.15) 0%, rgba(226, 219, 252, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 249, 112, 0.2);
}

.disclaimerTitle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #C2F970;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimerTitle i {
    font-size: 1.2rem;
    color: #C2F970;
}

.disclaimerText {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .disclaimerContent {
        padding: 1.5rem;
    }
    
    .disclaimerTitle {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .disclaimerText {
        font-size: 0.85rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .disclaimerContent {
        padding: 1.25rem;
    }
    
    .disclaimerTitle {
        font-size: 0.95rem;
    }
    
    .disclaimerText {
        font-size: 0.8rem;
    }
}

/* CSS Styles for Additional Content Blocks */

/* ===== ABOUT PAGE COMPANY INFORMATION BLOCK ===== */
.companyInformationBlock {
    padding: 4rem 0;
    background: linear-gradient(135deg, #E2DBFC 0%, rgba(214, 235, 255, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.companyInformationBlock::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 40%;
    height: 140%;
    background: radial-gradient(circle, rgba(194, 249, 112, 0.1) 0%, transparent 60%);
    animation: gentleFloat 20s ease-in-out infinite;
}

.companyInfoGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.aboutCompanyContent {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.aboutCompanyContent:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.companyInfoHeading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.companyDescription {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.supportingCompanyInfo {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid #C2F970;
}

.contactInformationCard {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(194, 249, 112, 0.2);
}

.contactInformationCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: #C2F970;
}

.contactCardHeading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.contactCardHeading i {
    color: #C2F970;
    font-size: 1.3rem;
}

.companyContactDetails {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contactDetailItem {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contactDetailItem:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    transform: translateX(5px);
}

.contactLabel {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contactValue {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.5;
}

/* ===== DISCLAIMER PAGE UPDATE SECTION ===== */
.disclaimerUpdateSection {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, rgba(226, 219, 252, 0.2) 100%);
}

.disclaimerUpdateContent {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top: 6px solid #C2F970;
}

.disclaimerHeader {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.disclaimerLastUpdated {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    display: inline-block;
}

.disclaimerIntroduction {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.7;
    margin: 0;
}

.affiliateDisclosureBlock,
.professionalAdviceBlock,
.disclaimerContactBlock {
    margin-bottom: 2.5rem;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.affiliateDisclosureBlock {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #059669;
}

.professionalAdviceBlock {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 4px solid #dc2626;
}

.disclaimerContactBlock {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #2563eb;
}

.affiliateDisclosureBlock:hover,
.professionalAdviceBlock:hover,
.disclaimerContactBlock:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.affiliateDisclosureHeading,
.professionalAdviceHeading,
.disclaimerContactHeading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.affiliateDisclosureHeading {
    color: #059669;
}

.professionalAdviceHeading {
    color: #dc2626;
}

.disclaimerContactHeading {
    color: #2563eb;
}

.affiliateDisclosureText,
.professionalAdviceText {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
}

.disclaimerContactDetails {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.disclaimerContactItem {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
}

.disclaimerContactItem i {
    color: #2563eb;
    font-size: 1.1rem;
    width: 18px;
}

/* ===== PRIVACY POLICY UPDATE SECTION ===== */
.privacyUpdateSection {
    padding: 4rem 0;
    background: linear-gradient(135deg, #D6EBFF 0%, rgba(226, 219, 252, 0.3) 100%);
}

.privacyUpdateContent {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top: 6px solid #2563eb;
}

.privacyHeaderUpdate {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.privacyEffectiveDate {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    display: inline-block;
}

.privacyIntroductionText {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.7;
    margin: 0;
}

.privacyCompanyInfoBlock,
.informationCollectionBlock {
    margin-bottom: 3rem;
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.privacyCompanyInfoBlock {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid #2563eb;
}

.informationCollectionBlock {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
}

.privacyCompanyInfoBlock:hover,
.informationCollectionBlock:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.privacyCompanyHeading,
.informationCollectionHeading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.privacyCompanyDetails {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.privacyCompanyItem {
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.privacyCompanyContact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.privacyContactItem {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
}

.privacyContactItem i {
    color: #2563eb;
    font-size: 1.1rem;
    width: 18px;
}

.informationTypeBlock {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.informationSubheading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.informationDescription {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.informationList {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0;
    list-style: none;
}

.informationListItem {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    color: #374151;
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
    transition: all 0.3s ease;
}

.informationListItem::before {
    content: '•';
    position: absolute;
    left: 1rem;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.2rem;
}

.informationListItem:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .companyInfoGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .disclaimerUpdateContent,
    .privacyUpdateContent {
        padding: 3rem;
    }
    
    .aboutCompanyContent,
    .contactInformationCard {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .companyInformationBlock,
    .disclaimerUpdateSection,
    .privacyUpdateSection {
        padding: 3rem 0;
    }
    
    .disclaimerUpdateContent,
    .privacyUpdateContent {
        padding: 2rem;
    }
    
    .aboutCompanyContent,
    .contactInformationCard {
        padding: 2rem;
    }
    
    .companyInfoHeading {
        font-size: 1.8rem;
    }
    
    .contactCardHeading,
    .affiliateDisclosureHeading,
    .professionalAdviceHeading,
    .disclaimerContactHeading,
    .privacyCompanyHeading,
    .informationCollectionHeading {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .affiliateDisclosureBlock,
    .professionalAdviceBlock,
    .disclaimerContactBlock,
    .privacyCompanyInfoBlock,
    .informationCollectionBlock {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .disclaimerUpdateContent,
    .privacyUpdateContent {
        padding: 1.5rem;
    }
    
    .aboutCompanyContent,
    .contactInformationCard {
        padding: 1.5rem;
    }
    
    .companyInfoHeading {
        font-size: 1.6rem;
    }
    
    .contactDetailItem {
        padding: 0.75rem;
    }
    
    .disclaimerLastUpdated,
    .privacyEffectiveDate {
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .informationTypeBlock {
        padding: 1rem;
    }
    
    .disclaimerContactItem,
    .privacyContactItem {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* CSS Styles for New Privacy Policy Content */

.newPrivacyContentSection {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, rgba(214, 235, 255, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.newPrivacyContentSection::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(194, 249, 112, 0.08) 0%, transparent 70%);
    animation: gentleFloat 25s ease-in-out infinite;
}

.newPrivacyContent {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border-top: 6px solid #3b82f6;
}

.cookiesTrackingBlock,
.affiliateDisclosureNewBlock,
.dataUsageBlock,
.userRightsBlock,
.dataStorageSecurityBlock,
.childrenPrivacyBlock,
.policyChangesBlock,
.finalContactBlock {
    margin-bottom: 3rem;
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cookiesTrackingBlock::before,
.affiliateDisclosureNewBlock::before,
.dataUsageBlock::before,
.userRightsBlock::before,
.dataStorageSecurityBlock::before,
.childrenPrivacyBlock::before,
.policyChangesBlock::before,
.finalContactBlock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: all 0.3s ease;
}

.cookiesTrackingBlock {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.cookiesTrackingBlock::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.affiliateDisclosureNewBlock {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.affiliateDisclosureNewBlock::before {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.dataUsageBlock {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.dataUsageBlock::before {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.userRightsBlock {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.userRightsBlock::before {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.dataStorageSecurityBlock {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.dataStorageSecurityBlock::before {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.childrenPrivacyBlock {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.childrenPrivacyBlock::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.policyChangesBlock {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.policyChangesBlock::before {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.finalContactBlock {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.finalContactBlock::before {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.cookiesTrackingBlock:hover,
.affiliateDisclosureNewBlock:hover,
.dataUsageBlock:hover,
.userRightsBlock:hover,
.dataStorageSecurityBlock:hover,
.childrenPrivacyBlock:hover,
.policyChangesBlock:hover,
.finalContactBlock:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.privacySectionHeading {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cookiesTrackingBlock .privacySectionHeading {
    color: #d97706;
}

.affiliateDisclosureNewBlock .privacySectionHeading {
    color: #047857;
}

.dataUsageBlock .privacySectionHeading {
    color: #2563eb;
}

.userRightsBlock .privacySectionHeading {
    color: #7c3aed;
}

.dataStorageSecurityBlock .privacySectionHeading {
    color: #b91c1c;
}

.childrenPrivacyBlock .privacySectionHeading {
    color: #059669;
}

.policyChangesBlock .privacySectionHeading {
    color: #0284c7;
}

.finalContactBlock .privacySectionHeading {
    color: #4b5563;
}

.privacySectionHeading i {
    font-size: 1.3rem;
}

.privacySectionText {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.privacyFeaturesList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.privacyFeatureItem {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    color: #374151;
    font-weight: 500;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.privacyFeatureItem::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
}

.privacyFeatureItem:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.optOutLinksContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.optOutLink {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.optOutLink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.privacyRightsList {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.privacyRightItem {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.privacyRightItem:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.2);
}

.privacyRightItem i {
    color: #7c3aed;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.privacyRightItem span {
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
}

.finalContactInfo {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(107, 114, 128, 0.2);
    margin-top: 1rem;
}

.contactCompanyName {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.contactAddress {
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contactMethodsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.contactMethodItem {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contactMethodItem:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contactMethodItem i {
    color: #4b5563;
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
}

.contactMethodItem span {
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .newPrivacyContent {
        padding: 3rem;
    }
    
    .cookiesTrackingBlock,
    .affiliateDisclosureNewBlock,
    .dataUsageBlock,
    .userRightsBlock,
    .dataStorageSecurityBlock,
    .childrenPrivacyBlock,
    .policyChangesBlock,
    .finalContactBlock {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .navigationMenu {
        display: none;
        position: fixed;
        top: 100px; /* высота навбара */
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
        flex-direction: column;
        padding: 1rem 0;
    }
    
    /* Показать меню когда активно */
    .navigationMenu.mobileMenuOpen {
        display: flex;
    }
    
    .mobileMenuToggle {
        display: block;
    }
    
    .navigationMenu li {
        width: 100%;
    }
    
    .navigationMenu .navLink {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
        text-align: left;
    }
    
    .navigationMenu .navLink:hover {
        background-color: #f8fafc;
    }
    
    /* Стили для выпадающего меню в мобильной версии */
    .navDropdown .dropdownMenu {
        position: static;
        display: none;
        background: #f8fafc;
        box-shadow: none;
        min-width: auto;
    }
    
    .navDropdown.open .dropdownMenu {
        display: block;
    }
    
    .dropdownMenu .navLink {
        padding-left: 3rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .newPrivacyContent {
        padding: 1.5rem;
    }
    
    .cookiesTrackingBlock,
    .affiliateDisclosureNewBlock,
    .dataUsageBlock,
    .userRightsBlock,
    .dataStorageSecurityBlock,
    .childrenPrivacyBlock,
    .policyChangesBlock,
    .finalContactBlock {
        padding: 1.25rem;
    }
    
    .privacySectionHeading {
        font-size: 1.1rem;
    }
    
    .finalContactInfo {
        padding: 1.5rem;
    }
    
    .contactMethodItem {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .privacyRightItem {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

.navDropdown {
    position: relative;
}
.dropdownMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 100;
    list-style: none;
    padding: 0;
    margin: 0;
}
.dropdownMenu li a {
    display: block;
    padding: 10px 18px;
    color: #222;
    text-decoration: none;
}
.dropdownMenu li a:hover {
    background: #f5f5f5;
}
.navDropdown.open .dropdownMenu {
    display: block;
}





.mobileMenuToggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobileMenuToggle:hover {
    background-color: #F2F2F2;
}

.mobileMenuToggle i {
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .navigationMenu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 1000;
        flex-direction: column;
        padding: 100px 0 2rem 0;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .navigationMenu.mobileMenuOpen {
        display: flex;
        transform: translateX(0);
    }
    
    .mobileMenuToggle {
        display: block;
    }
    
    .navigationMenu li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .navigationMenu .navLink {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .navigationMenu .navLink:hover {
        background-color: #f8fafc;
        transform: translateX(10px);
    }
    
    .navDropdown {
        position: relative;
    }
    
    .navDropdown .dropdownMenu {
        position: static;
        display: none;
        background: #f8fafc;
        box-shadow: none;
        min-width: auto;
        border-radius: 0;
        margin: 0;
        padding: 0;
    }
    
    .navDropdown.open .dropdownMenu {
        display: block;
    }
    
    .dropdownMenu .navLink {
        padding-left: 3rem;
        font-size: 1rem;
        color: #64748b;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .dropdownMenu .navLink:hover {
        background-color: #f1f5f9;
        color: #1e293b;
    }
    
    .navDropdown > .navLink i {
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .navDropdown.open > .navLink i {
        transform: rotate(180deg);
    }
}

.mobileMenuOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobileMenuOverlay.show {
    display: block;
    opacity: 1;
}
/* Стили для контактной формы */
.contactForm {
  margin-top: 2rem;
  width: 100%;
}

.formField {
  margin-bottom: 1.5rem;
}

.fieldLabel {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.textInput,
.textArea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.textInput:focus,
.textArea:focus {
  border-color: #0066cc;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.15);
}

.textArea {
  resize: vertical;
  min-height: 120px;
}

.submitButton {
  background-color: #0066cc;
  color: white;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submitButton:hover {
  background-color: #0055aa;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .companyInfoGrid {
    grid-template-columns: 1fr;
  }
  
  .contactForm {
    margin-bottom: 2rem;
  }
}