/* Reset and Base Styles */
/* Making sure we start with a clean slate */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0EA5E9;
    --accent-color: #FB923C;
    --powder-blue: #DBEAFE;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --shadow-soft: 0 2px 8px rgba(14, 165, 233, 0.08);
    --shadow-medium: 0 4px 16px rgba(14, 165, 233, 0.12);
    --shadow-strong: 0 8px 24px rgba(14, 165, 233, 0.16);
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito Sans', 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
}

.cookie-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.3);
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.logo:hover {
    color: var(--accent-color);
    transform: scale(1.02);
}

.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Nunito Sans', sans-serif;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section - Fullscreen Slider */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    padding: 0 !important;
    margin: 0;
}

.hero-slider-fullscreen {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.85) 0%, rgba(30, 64, 175, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    animation: fadeInUp 0.8s ease 0.3s both;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Nunito Sans', sans-serif;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.1;
    font-family: 'Quicksand', sans-serif;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Nunito Sans', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-strong);
}

.btn-primary:hover {
    background: var(--powder-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
}

.hero-slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
    flex-shrink: 0;
}

.dot.active {
    width: 36px;
    border-radius: 6px;
    background: white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: scale(1.15);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    animation: fadeInUp 0.8s ease both;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.8;
}

/* Solutions Section */
.solutions {
    background: var(--powder-blue);
    padding: 120px 0;
    width: 100%;
}

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

.solution-card {
    background: var(--bg-white);
    padding: 50px 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease both;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }
.solution-card:nth-child(4) { animation-delay: 0.4s; }

.solution-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: var(--shadow-strong);
}

.solution-image {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--powder-blue);
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-image {
    transform: scale(1.02);
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Nunito Sans', sans-serif;
}

/* Analytics Section */
.analytics {
    padding: 120px 0;
    background: var(--bg-white);
    width: 100%;
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.analytics-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease both;
}

.analytics-text h2 {
    font-size: 2.6rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
}

.analytics-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.9;
    font-family: 'Nunito Sans', sans-serif;
}

.feature-list {
    list-style: none;
    margin-bottom: 35px;
}

.feature-list li {
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.4rem;
}

.analytics-visual {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.analytics-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    transition: transform 0.3s ease;
}

.analytics-visual img:hover {
    transform: scale(1.02);
}

/* Progress Bars */
.progress-container {
    margin-top: 30px;
}

.progress-item {
    margin-bottom: 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Nunito Sans', sans-serif;
}

.progress-bar {
    height: 12px;
    background: var(--powder-blue);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50px;
    width: 0;
    transition: width 1.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Features Section */
.features {
    background: var(--powder-blue);
    padding: 120px 0;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.feature-item {
    background: var(--bg-white);
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease both;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

.feature-item:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: var(--shadow-strong);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Nunito Sans', sans-serif;
}

/* Technology Section */
.technology {
    padding: 120px 0;
    background: var(--bg-white);
    width: 100%;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.technology-visual {
    opacity: 0;
    animation: fadeInUp 0.8s ease both;
}

.technology-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    transition: transform 0.3s ease;
}

.technology-visual img:hover {
    transform: scale(1.02);
}

.technology-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.technology-text h2 {
    font-size: 2.6rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
}

.technology-text > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 45px;
    line-height: 1.9;
    font-family: 'Nunito Sans', sans-serif;
}

.tech-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.tech-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Nunito Sans', sans-serif;
}

/* Insights Section with Charts */
.insights {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0284c7 100%);
    color: white;
    padding: 120px 0;
    width: 100%;
}

.insights .section-header h2,
.insights .section-header p {
    color: white;
}

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

.insight-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease both;
    backdrop-filter: blur(10px);
}

.insight-card:nth-child(1) { animation-delay: 0.1s; }
.insight-card:nth-child(2) { animation-delay: 0.2s; }
.insight-card:nth-child(3) { animation-delay: 0.3s; }

.insight-card:hover {
    transform: translateY(-8px) scale(1.04);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.insight-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: white;
    font-family: 'Quicksand', sans-serif;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.insight-card p {
    opacity: 0.95;
    line-height: 1.8;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.05rem;
}

/* Pulsing Satisfaction Indicator */
.satisfaction-indicator {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-left: 8px;
    animation: pulse 2s infinite;
    vertical-align: middle;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Resources Section */
.resources {
    background: var(--powder-blue);
    padding: 120px 0;
    width: 100%;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.resource-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease both;
}

.resource-image {
    width: 100%;
    height: 220px;
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--powder-blue);
    transition: transform 0.3s ease;
}

.resource-item:hover .resource-image {
    transform: scale(1.05);
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-item:nth-child(1) { animation-delay: 0.1s; }
.resource-item:nth-child(2) { animation-delay: 0.2s; }
.resource-item:nth-child(3) { animation-delay: 0.3s; }

.resource-item:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: var(--shadow-strong);
}

.resource-item h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.resource-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Nunito Sans', sans-serif;
}

/* FAQ Section with Accordion */
.faq-section {
    padding: 120px 0;
    background: var(--bg-white);
    width: 100%;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-white);
    border: 2px solid var(--powder-blue);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-soft);
}

.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    color: var(--primary-color);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 30px 25px;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.05rem;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-white);
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    opacity: 0;
    animation: fadeInUp 0.8s ease both;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.9;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.05rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--powder-blue);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 0 30px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: white;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 12px;
    font-family: 'Nunito Sans', sans-serif;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-family: 'Nunito Sans', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 60px 0;
    min-height: 70vh;
    background: var(--powder-blue);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
}

.policy-content h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
}

.policy-content h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.policy-content h3 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.policy-content p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: var(--text-light);
    font-family: 'Nunito Sans', sans-serif;
}

.policy-content ul,
.policy-content ol {
    margin: 25px 0;
    padding-left: 35px;
}

.policy-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-light);
    font-family: 'Nunito Sans', sans-serif;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 30px;
    background: var(--powder-blue);
}

.thanks-content {
    max-width: 650px;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.9;
    font-family: 'Nunito Sans', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-strong);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 999;
        gap: 20px;
    }

    .nav.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        height: 100vh;
        min-height: 500px;
    }

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

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

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }

    .hero-slider-controls {
        bottom: 25px;
        gap: 15px;
        padding: 12px 20px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .hero-image-container {
        transform: none;
    }

    .hero-image-container:hover {
        transform: scale(1.01);
    }

    .analytics-content,
    .technology-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .policy-content {
        padding: 40px 30px;
    }

    .policy-content h1 {
        font-size: 2.2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 70px 0;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .resource-image {
        height: 180px;
    }

    .resource-item {
        padding: 30px;
    }

    .accordion-header {
        font-size: 1.05rem;
        padding: 20px 25px;
    }

    .accordion-content {
        padding: 0 25px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 25px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 !important;
        min-height: 550px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-slider-controls {
        bottom: 20px;
        gap: 12px;
        padding: 10px 16px;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
    }
    
    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }
}
