/* ============================================
   ITICompliance - Main Stylesheet
   ============================================ */

/* ============================================
   Variables & Base Styles
   ============================================ */
:root {
    --primary-color: #0066cc;
    --secondary-color: #00a8ff;
    --accent-color: #ff6b6b;
    --success-color: #51cf66;
    --warning-color: #ffd43b;
    --danger-color: #ff6b6b;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Rhodium Libre', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.homepage {
    background-color: #ffffff;
}

/* ============================================
   Topbar (Header)
   ============================================ */
.topbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1000;
}

.topbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.topbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Brand/Logo */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.brand:hover {
    opacity: 0.8;
}

.brand-image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    font-family: var(--font-primary);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1;
    margin-top: 2px;
}

/* Navigation */
.navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navigation-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    align-items: center;
}

.menu-item {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.menu-item:hover,
.menu-item.active {
    color: var(--primary-color);
}

.menu-item:hover::after,
.menu-item.active::after {
    width: 100%;
}

.action-button {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.action-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    display: none;
}

@media (max-width: 1199px) {
    .navigation-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .navigation-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* ============================================
   Content Area
   ============================================ */
.content {
    min-height: calc(100vh - 200px);
    padding-top: 0;
}

/* ============================================
   Cookie Notification
   ============================================ */
#cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

#cookie-notification.show {
    display: block;
}

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

.notification-text {
    color: white;
    flex: 1;
}

.notification-text p {
    margin: 0;
    font-size: 0.9rem;
}

.notification-text a {
    color: var(--secondary-color);
    text-decoration: underline;
}

#cookie-notification button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

#cookie-notification button:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .notification-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Blocks (Sections)
   ============================================ */
.block {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.block.light-background {
    background-color: #f8f9fa;
}

/* Block Labels */
.block-label {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.block-label i {
    font-size: 1rem;
}

/* Block Headings */
.block-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--font-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.block-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .block-heading {
        font-size: 2rem;
    }

    .block-text {
        font-size: 1rem;
    }
}

/* ============================================
   Banner Section
   ============================================ */
.banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.background-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.background-element-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.background-element-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.background-element-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.background-element-4 {
    width: 250px;
    height: 250px;
    background: var(--primary-color);
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.background-element-5 {
    width: 180px;
    height: 180px;
    background: var(--secondary-color);
    bottom: 10%;
    right: 5%;
    animation-delay: 8s;
}

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

.banner-intro {
    position: relative;
    z-index: 1;
}

.banner-label {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.banner-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-primary);
}

.banner-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-action-primary,
.banner-action-secondary {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.banner-action-primary {
    background: var(--primary-color);
    color: white;
}

.banner-action-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.banner-action-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.banner-action-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Banner Media */
.banner-media {
    position: relative;
    z-index: 1;
}

.banner-gallery {
    position: relative;
    height: 500px;
}

.media-item {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.media-item-primary {
    width: 70%;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 2;
}

.media-item-secondary {
    width: 60%;
    height: 350px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.media-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.media-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.media-image-primary,
.media-image-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.media-item:hover .media-image-primary,
.media-item:hover .media-image-secondary {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.media-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 2;
}

.media-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.media-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.media-details p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.media-metrics {
    display: flex;
    gap: 1rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.metric-item i {
    font-size: 1rem;
}

.floating-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 3;
}

.icon-element {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.icon-element:nth-child(2) {
    animation-delay: 0.5s;
}

.icon-element:nth-child(3) {
    animation-delay: 1s;
}

.icon-element:nth-child(4) {
    animation-delay: 1.5s;
}

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

@media (max-width: 768px) {
    .banner-heading {
        font-size: 2rem;
    }

    .banner-text {
        font-size: 1rem;
    }

    .banner-gallery {
        height: 400px;
        margin-top: 2rem;
    }

    .media-item-primary {
        width: 80%;
        height: 300px;
    }

    .media-item-secondary {
        width: 70%;
        height: 250px;
    }
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

.background-decorative {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--primary-color);
}

.background-decorative-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.background-decorative-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
}

.background-decorative-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.background-decorative-4 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 20%;
}

.review-item {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.review-item:hover .review-hover {
    opacity: 0.05;
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-quote {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--warning-color);
    font-size: 1.1rem;
}

.review-message {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.person-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.person-details h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.person-details span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   Solutions Section
   ============================================ */
.solutions {
    background: white;
}

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

.background-pattern {
    position: absolute;
    opacity: 0.03;
    background: var(--primary-color);
}

.background-pattern-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.background-pattern-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.background-pattern-3 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.background-pattern-4 {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    top: 20%;
    right: 20%;
}

.background-pattern-5 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    bottom: 20%;
    left: 20%;
}

.solution-item {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.solution-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.solution-item:hover .solution-hover {
    opacity: 0.05;
}

.solution-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-item:hover .solution-image {
    transform: scale(1.1);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.solution-details {
    padding: 2rem;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.solution-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.solution-tag {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.solution-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.solution-details p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.solution-list {
    margin-bottom: 1.5rem;
}

.solution-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.solution-list-item i {
    color: var(--success-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.solution-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

/* ============================================
   Process Section
   ============================================ */
.process {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.background-accent {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--primary-color);
}

.background-accent-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.background-accent-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
}

.background-accent-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.background-accent-4 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 20%;
}

.process-item {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-item-highlight {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 168, 255, 0.05));
    border: 2px solid var(--primary-color);
}

.process-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.process-item:hover .process-hover {
    opacity: 0.05;
}

.process-content {
    position: relative;
    z-index: 1;
}

.process-index {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.process-symbol {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.process-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.process-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.process-tag {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-intro {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 4rem 0;
}

.contact-details-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.contact-details-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-details-symbol {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.contact-details-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.contact-details-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-details-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.contact-form-title p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form {
    max-width: 100%;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required-star {
    color: var(--danger-color);
    margin-left: 0.25rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.form-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.form-feedback.success {
    background: rgba(81, 207, 102, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-feedback.error {
    background: rgba(255, 107, 107, 0.1);
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.invalid-feedback {
    display: none;
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.form-input:invalid:not(:placeholder-shown) ~ .invalid-feedback,
.form-textarea:invalid:not(:placeholder-shown) ~ .invalid-feedback {
    display: block;
}

/* Contact Questions */
.contact-questions {
    background: #f8f9fa;
}

.question-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.question-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.question-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.question-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   FAQ Page Styles
   ============================================ */
.faq-intro {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 4rem 0;
}

.faq-tabs {
    background: white;
    padding: 2rem 0;
}

.faq-tabs-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-tab-item {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.faq-tab-item:hover,
.faq-tab-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-group {
    padding: 3rem 0;
}

.faq-group-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font-primary);
}

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

.faq-entry {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-entry-title {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    user-select: none;
}

.faq-entry-title:hover {
    color: var(--primary-color);
}

.faq-entry-title i {
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-entry.active .faq-entry-title i {
    transform: rotate(180deg);
}

.faq-entry-text {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-entry.active .faq-entry-text {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-action {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    text-align: center;
}

/* ============================================
   About Page Styles
   ============================================ */
.company-intro {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 5rem 0;
}

.company-intro-details {
    position: relative;
    z-index: 1;
}

.company-intro-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-primary);
}

.company-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.company-intro-media {
    position: relative;
    z-index: 1;
}

.company-intro-media img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

/* Purpose Section */
.purpose-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.purpose-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.purpose-symbol {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.purpose-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.purpose-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* History Section */
.history-list {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.history-list::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.history-entry {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 3rem;
}

.history-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.history-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.history-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.history-details p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Principles Section */
.principles {
    background: #f8f9fa;
}

.principle-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.principle-symbol {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.principle-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.principle-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Metrics Section */
.metrics {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.metric-item {
    text-align: center;
    padding: 2rem;
}

.metric-symbol {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.metric-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.metric-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   Thanks Page Styles
   ============================================ */
.thanks-intro {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 5rem 0;
    text-align: center;
}

.thanks-icon-container {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-color), #40c057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
}

.thanks-symbol {
    font-size: 3rem;
    color: white;
}

.thanks-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.thanks-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.next-steps {
    padding: 4rem 0;
}

.step-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-index {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.step-symbol {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.step-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.quick-links {
    background: #f8f9fa;
    padding: 3rem 0;
}

.quick-links-wrapper {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.more-info {
    padding: 4rem 0;
}

.info-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-symbol {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
}

.info-item h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.info-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

/* ============================================
   Footer (Bottom)
   ============================================ */
.bottom {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.bottom-main {
    margin-bottom: 3rem;
}

.bottom-brand {
    margin-bottom: 2rem;
}

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

.bottom-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.bottom-brand-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    font-family: var(--font-primary);
}

.bottom-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.bottom-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.bottom-menu {
    margin-bottom: 2rem;
}

.bottom-menu-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.bottom-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bottom-menu-items li {
    margin-bottom: 0.75rem;
}

.bottom-menu-items a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.bottom-menu-items a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.bottom-legal {
    margin-bottom: 2rem;
}

.bottom-newsletter {
    margin-top: 2rem;
}

.newsletter-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.newsletter-wrapper {
    display: flex;
    gap: 0.5rem;
}

.newsletter-field {
    flex: 1;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.newsletter-field-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
}

.newsletter-field-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-field-input:focus {
    outline: none;
}

.newsletter-field-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-field-button:hover {
    background: var(--secondary-color);
}

.bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.bottom-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.bottom-copyright strong {
    color: white;
}

.bottom-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-item:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 768px) {
    .bottom-social {
        justify-content: center;
        margin-top: 1rem;
    }

    .newsletter-wrapper {
        flex-direction: column;
    }

    .newsletter-field-button {
        width: 100%;
    }
}

/* ============================================
   Scroll Up Button
   ============================================ */
.scroll-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    cursor: pointer;
    overflow: hidden;
}

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

.scroll-up:hover::before {
    width: 100%;
    height: 100%;
}

.scroll-up.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: scrollUpFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.scroll-up:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-5px) scale(1.05);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-up:active {
    transform: translateY(-3px) scale(0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-up i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-up:hover i {
    transform: translateY(-2px);
}

.scroll-up:active i {
    transform: translateY(0);
}

/* Animation for scroll-up button appearance */
@keyframes scrollUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ============================================
   Loader (Preloader)
   ============================================ */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

#loader::before {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   Responsive Utilities
   ============================================ */
@media (max-width: 1199px) {
    .block-heading {
        font-size: 2rem;
    }

    .banner-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .block {
        padding: 3rem 0;
    }

    .block-heading {
        font-size: 1.75rem;
    }

    .banner-heading {
        font-size: 2rem;
    }

    .banner-actions {
        flex-direction: column;
    }

    .banner-action-primary,
    .banner-action-secondary {
        width: 100%;
        justify-content: center;
    }

    .scroll-up {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-up i {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .block-heading {
        font-size: 1.5rem;
    }

    .banner-heading {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .thanks-heading {
        font-size: 2rem;
    }

    .thanks-icon {
        width: 80px;
        height: 80px;
    }

    .thanks-icon i {
        font-size: 2.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .cookie-type-card,
    .step-item,
    .info-item {
        padding: 1.5rem;
    }

    .quick-links-wrapper {
        padding: 2rem;
        text-align: center;
    }

    .quick-links-wrapper h3 {
        font-size: 1.5rem;
    }

    .quick-links-wrapper .btn-primary {
        margin-top: 1.5rem;
        width: 100%;
    }
}

/* ============================================
   Cookie Policy Page
   ============================================ */
.cookie-intro {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 255, 0.05) 100%);
    padding: 5rem 0 3rem;
}

.cookie-content {
    padding: 4rem 0;
}

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

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-section strong {
    color: var(--dark-color);
    font-weight: 600;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

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

.legal-list li strong {
    color: var(--dark-color);
}

.cookie-type-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cookie-type-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cookie-type-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-type-card h3 i {
    font-size: 1.5rem;
}

.cookie-type-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cookie-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cookie-details p {
    margin-bottom: 0.75rem;
}

.cookie-details ul {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0;
}

.cookie-details ul li {
    padding: 0.5rem 0 0.5rem 1.25rem;
    position: relative;
    color: var(--text-light);
}

.cookie-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-box {
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ============================================
   Privacy Policy Page
   ============================================ */
.privacy-intro {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 255, 0.05) 100%);
    padding: 5rem 0 3rem;
}

.privacy-content {
    padding: 4rem 0;
}

/* ============================================
   Terms Page
   ============================================ */
.terms-intro {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 255, 0.05) 100%);
    padding: 5rem 0 3rem;
}

.terms-content {
    padding: 4rem 0;
}

/* ============================================
   Thanks Page
   ============================================ */
.thanks-intro {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 255, 0.05) 100%);
    padding: 5rem 0 3rem;
    text-align: center;
}

.thanks-icon-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-color) 0%, #40c057 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(81, 207, 102, 0.3);
    animation: thanksIconPulse 2s ease-in-out infinite;
}

.thanks-icon i {
    font-size: 3.5rem;
    color: white;
}

@keyframes thanksIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(81, 207, 102, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(81, 207, 102, 0.4);
    }
}

.thanks-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.thanks-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.next-steps {
    padding: 4rem 0;
}

.step-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: var(--transition);
}

.step-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-item:hover::before {
    width: 6px;
}

.step-index {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.step-symbol {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.step-symbol i {
    font-size: 1.75rem;
    color: white;
}

.step-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.quick-links {
    padding: 3rem 0;
}

.quick-links-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    padding: 3rem;
    color: white;
}

.quick-links-wrapper h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.quick-links-wrapper p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 0;
    line-height: 1.8;
}

.quick-links-wrapper .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: var(--transition);
}

.quick-links-wrapper .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.more-info {
    padding: 4rem 0;
}

.info-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.info-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.info-symbol {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.info-item:hover .info-symbol {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1);
}

.info-symbol i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.info-item:hover .info-symbol i {
    color: white;
}

.info-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.info-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

.info-link i {
    transition: var(--transition);
}

.info-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .topbar,
    .bottom,
    .scroll-up,
    #cookie-notification,
    #loader {
        display: none !important;
    }

    .block {
        page-break-inside: avoid;
    }
}

