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

:root {
    --primary-color: #1a5276;
    --primary-dark: #0e3d5e;
    --secondary-color: #2980b9;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --text-light: #5d6d7e;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 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;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

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

.header {
    background: var(--bg-white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.logo-icon {
    font-size: 1.8rem;
    margin-right: 10px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.9) 0%, rgba(41, 128, 185, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--bg-white);
    max-width: 700px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.services-overview {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.benefits {
    background: var(--primary-color);
    color: var(--bg-white);
}

.benefits h2 {
    color: var(--bg-white);
}

.benefits .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.benefit-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.who-we-serve {
    background: var(--bg-white);
}

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

.serve-text h2 {
    text-align: left;
}

.serve-list {
    list-style: none;
    margin-top: 20px;
}

.serve-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.serve-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.contact-section {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    padding: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.contact-info h2 {
    color: var(--bg-white);
    text-align: left;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-label {
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.contact-form-container {
    padding: 50px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.form-checkbox label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.page-hero {
    position: relative;
    padding: 150px 0 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.about-mission,
.about-what-we-do {
    background: var(--bg-white);
}

.mission-content,
.what-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-text h2,
.what-text h2 {
    text-align: left;
}

.mission-text p,
.what-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.mission-image img,
.what-image img,
.serve-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.what-list {
    list-style: none;
    margin-top: 20px;
}

.what-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.about-values {
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-quality {
    background: var(--bg-white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quality-item {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.quality-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.quality-content {
    padding: 25px;
}

.quality-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.quality-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-cta {
    background: var(--primary-color);
    text-align: center;
}

.about-cta h2 {
    color: var(--bg-white);
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.contact-page {
    background: var(--bg-light);
}

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

.contact-info-section h2,
.contact-form-section h2 {
    text-align: left;
    margin-bottom: 20px;
}

.company-info {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.company-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.info-icon {
    font-size: 1.5rem;
}

.info-content strong {
    display: block;
    color: var(--text-color);
}

.info-content address {
    font-style: normal;
    color: var(--text-light);
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.business-hours {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
}

.business-hours h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

.hours-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
}

.contact-form-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.map-section {
    background: var(--bg-white);
    padding-bottom: 80px;
}

.map-section h2 {
    margin-bottom: 30px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

.services-intro {
    background: var(--bg-white);
    text-align: center;
}

.services-intro h2 {
    margin-bottom: 20px;
}

.intro-content p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-section {
    background: var(--bg-light);
}

.services-section h2 {
    margin-bottom: 40px;
}

.services-grid-large {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card-large:nth-child(even) {
    direction: rtl;
}

.service-card-large:nth-child(even) .service-image,
.service-card-large:nth-child(even) .service-content {
    direction: ltr;
}

.service-card-large .service-image {
    height: 100%;
    min-height: 350px;
}

.service-card-large .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-large .service-content {
    padding: 40px;
}

.service-card-large h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card-large p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card-large h4 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-card-large ul,
.service-card-large ol {
    color: var(--text-light);
    padding-left: 25px;
}

.service-card-large li {
    margin-bottom: 8px;
}

.services-gallery {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.services-cta {
    background: var(--primary-color);
    text-align: center;
}

.cta-box {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.business-intro {
    background: var(--bg-white);
    text-align: center;
}

.business-intro h2 {
    margin-bottom: 20px;
}

.business-section {
    background: var(--bg-light);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.business-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.business-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.business-card h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    text-align: left;
}

.business-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.serve-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.serve-category h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.serve-category ul {
    list-style: none;
}

.serve-category li {
    padding: 8px 0;
    color: var(--text-light);
}

.revenue-streams {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.revenue-stream {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.revenue-stream h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.revenue-stream p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.data-collection {
    background: var(--bg-white);
}

.data-collection h2 {
    margin-bottom: 10px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.data-item {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
}

.data-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.data-details h4 {
    color: var(--text-color);
    margin: 15px 0 10px;
    font-size: 1rem;
}

.data-details ul {
    list-style: none;
    margin-bottom: 15px;
}

.data-details li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.data-details li::before {
    content: '•';
    margin-right: 8px;
    color: var(--primary-color);
}

.data-details p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.data-protection {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.data-protection h3 {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.data-protection p {
    opacity: 0.95;
    margin-bottom: 10px;
}

.data-protection a {
    color: var(--bg-white);
    text-decoration: underline;
}

.business-process {
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.business-cta {
    background: var(--primary-color);
    text-align: center;
}

.business-cta .cta-box {
    background: transparent;
    color: var(--bg-white);
}

.business-cta .cta-box h2 {
    color: var(--bg-white);
}

.business-cta .cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

.footer {
    background: #1a1a2e;
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    opacity: 0.8;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .serve-content {
        grid-template-columns: 1fr;
    }
    
    .serve-text {
        order: 2;
    }
    
    .serve-image {
        order: 1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .mission-content,
    .what-content {
        grid-template-columns: 1fr;
    }
    
    .mission-image,
    .what-image {
        order: 1;
    }
    
    .mission-text,
    .what-text {
        order: 2;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-card-large {
        grid-template-columns: 1fr;
    }
    
    .service-card-large:nth-child(even) {
        direction: ltr;
    }
    
    .service-card-large .service-image {
        min-height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }
    
    .btn {
        padding: 12px 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .serve-categories {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px;
    }
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-modal-content {
    background: var(--bg-white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.cookie-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.cookie-modal-content > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.cookie-category {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header label {
    font-weight: 600;
    color: var(--text-color);
}

.cookie-status {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.cookie-category-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.cookie-modal-buttons .btn {
    flex: 1;
}

.cookie-modal-link {
    text-align: center;
    margin-top: 20px;
}

.cookie-modal-link a {
    color: var(--secondary-color);
    text-decoration: none;
}

.cookie-modal-link a:hover {
    text-decoration: underline;
}

/* Button Outline Style */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}
