/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.navbar .nav-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    position: relative;
}

.logo img {
    height: 32px;
    transition: opacity 0.3s ease;
}

.logo-light {
    opacity: 1;
}

.logo-dark {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.header.scrolled .logo-light {
    opacity: 0;
}

.header.scrolled .logo-dark {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
}

.lang-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.header.scrolled .lang-link {
    color: rgba(51, 51, 51, 0.7);
}

.header.scrolled .lang-link:hover {
    color: #04B2D9;
    background: rgba(75, 178, 217, 0.1);
}

.header.scrolled .lang-link.active {
    color: #049DD9;
    background: rgba(75, 178, 217, 0.15);
}

.header.scrolled .lang-separator {
    color: rgba(51, 51, 51, 0.5);
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
}

.header.scrolled .nav-menu a {
    color: #333;
}

.header.scrolled .nav-menu a:hover {
    color: #04B2D9;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.3s;
}

.header.scrolled .hamburger span {
    background: #333;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #14D990 0%, #049DD9 100%);
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background: #ffffff;
    color: #049DD9;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card:hover {
    border-color: #04B2D9;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(75, 178, 217, 0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Process Section */
/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0FBF8D 0%, #04B2D9 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-secondary {
    background: white;
    color: #049DD9;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.process {
    padding: 6rem 0;
    background: #f8f9fa;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    background: linear-gradient(135deg, #0FBF8D 0%, #049DD9 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.step p {
    color: #666;
    margin: 0;
}

/* Success Stories */
.success-stories {
    padding: 6rem 0;
    background: white;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.story-card.featured {
    grid-column: span 1;
}

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.story-content {
    padding: 2rem;
}

.story-card:not(.featured) {
    padding: 2rem;
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: #009DD9;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

.story-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.outcomes {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.outcomes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.outcomes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #009DD9;
    font-weight: bold;
}

.read-more {
    background: transparent;
    color: #009DD9;
    border: 2px solid #009DD9;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #009DD9;
    color: white;
}

.view-all {
    display: block;
    margin: 0 auto;
    background: #009DD9;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all:hover {
    background: #2136e6;
    transform: translateY(-2px);
}

/* Integration Section */
.integrations {
    padding: 6rem 0;
    background: #f8f9fa;
}

.integration-header {
    margin-bottom: 4rem;
}

.integration-text {
    max-width: 800px;
}

.integration-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.highlight {
    background: linear-gradient(135deg, #14D990 0%, #04B2D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integration-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.ticker-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
    display: flex;
}

.ticker-content {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 4rem;
    min-width: 100%;
}

.ticker-duplicate {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 4rem;
    min-width: 100%;
}

.ticker-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.ticker-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: all 0.3s ease;
}

.ticker-item:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

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

/* Team Section */
.team {
    padding: 6rem 0;
    background: #ffffff;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-grid .team-member:nth-child(1),
.team-grid .team-member:nth-child(2),
.team-grid .team-member:nth-child(3) {
    grid-column: span 2;
}

.team-grid .team-member:nth-child(4) {
    grid-column: 2 / span 2;
}

.team-grid .team-member:nth-child(5) {
    grid-column: 4 / span 2;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.team-member h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #009DD9;
    font-weight: 600;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

/* Success Story Detail Pages */
.story-detail {
    padding: 8rem 0 6rem 0;
    background: #ffffff;
}

.story-detail-header {
    margin-bottom: 4rem;
}

.back-link {
    color: #009DD9;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #2136e6;
}

.story-detail-header .story-tags {
    margin-bottom: 1.5rem;
}

.story-detail-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.story-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

.story-detail-content {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
}

.story-detail-image {
    text-align: center;
}

.story-detail-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.story-detail-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
    color: #1a1a1a;
}

.story-detail-text h2:first-child {
    margin-top: 0;
}

.story-detail-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #1a1a1a;
}

.story-detail-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.detailed-outcomes {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.detailed-outcomes li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.detailed-outcomes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #009DD9;
    font-weight: bold;
    font-size: 1.2rem;
}

.detailed-outcomes strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.meeting-info {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
}

.meeting-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.meeting-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.meeting-benefits {
    margin-bottom: 2.5rem;
}

.meeting-benefits h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.meeting-benefits ul {
    list-style: none;
    padding: 0;
}

.meeting-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.5;
}

.meeting-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #009DD9;
    font-weight: bold;
}

.meeting-cta {
    text-align: center;
}

.meeting-duration {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.book-meeting-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #009DD9;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(49, 71, 255, 0.3);
    margin-bottom: 1rem;
}

.book-meeting-btn:hover {
    background: #2136e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 71, 255, 0.4);
    color: white;
}

.meeting-icon {
    font-size: 1.2rem;
}

.meeting-note {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.contact-form h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.form-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #009DD9;
}

.contact-form button {
    background: #009DD9;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #2136e6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .integration-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .ticker-item img {
        height: 30px;
    }
    
    .story-detail-header h1 {
        font-size: 2.2rem;
    }
    
    .story-subtitle {
        font-size: 1.1rem;
    }
    
    .story-detail-text h2 {
        font-size: 1.6rem;
    }
    
    .story-detail-text p,
    .detailed-outcomes li {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .meeting-info {
        padding: 2rem;
    }
    
    .meeting-info h2 {
        font-size: 1.8rem;
    }
    
    .book-meeting-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .stories-container {
        grid-template-columns: 1fr;
    }
    
    .story-card.featured .story-image {
        height: 150px;
    }
    
    .story-content,
    .story-card:not(.featured) {
        padding: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        gap: 1.5rem;
    }
    
    .team-grid .team-member:nth-child(1),
    .team-grid .team-member:nth-child(2),
    .team-grid .team-member:nth-child(3),
    .team-grid .team-member:nth-child(4),
    .team-grid .team-member:nth-child(5) {
        grid-column: span 1;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .team-member h3 {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .team-member h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .team-member p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services h2,
    .process h2,
    .success-stories h2,
    .team h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 1.5rem;
    }
    
    .team-grid .team-member:nth-child(1),
    .team-grid .team-member:nth-child(2),
    .team-grid .team-member:nth-child(3),
    .team-grid .team-member:nth-child(4),
    .team-grid .team-member:nth-child(5) {
        grid-column: span 1;
    }
    
    .team-grid .team-member:nth-child(5) {
        grid-column: span 1;
        max-width: 100%;
        margin: 0;
    }
    
    .team-member {
        padding: 1.25rem;
    }
    
    .team-member img {
        width: 80px;
        height: 80px;
    }
    
    .team-member h3 {
        font-size: 1.1rem;
        margin: 0.75rem 0 0.5rem 0;
    }
    
    .team-member h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .team-member p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #04B2D9;
}

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

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

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #0FBF8D 0%, #04B2D9 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(15, 191, 141, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 11000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #0D0D0D;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    color: #333;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

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

.cookie-category h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #0D0D0D;
}

.cookie-category p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background: linear-gradient(135deg, #0FBF8D 0%, #04B2D9 100%);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: #04B2D9;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .cookie-btn-primary,
    .cookie-btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn-primary,
    .cookie-btn-secondary {
        width: 100%;
        text-align: center;
    }
}