* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --disenoskessell-primary: #6366f1;
    --disenoskessell-primary-dark: #4f46e5;
    --disenoskessell-primary-light: #818cf8;
    --disenoskessell-secondary: #ec4899;
    --disenoskessell-accent: #f59e0b;
    --disenoskessell-dark: #1e293b;
    --disenoskessell-dark-light: #334155;
    --disenoskessell-gray: #64748b;
    --disenoskessell-gray-light: #94a3b8;
    --disenoskessell-bg: #f8fafc;
    --disenoskessell-white: #ffffff;
    --disenoskessell-gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --disenoskessell-gradient-2: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #6366f1 100%);
    --disenoskessell-gradient-3: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    --disenoskessell-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --disenoskessell-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --disenoskessell-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --disenoskessell-shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--disenoskessell-dark);
    background-color: var(--disenoskessell-bg);
    overflow-x: hidden;
}

.disenoskessell-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.disenoskessell-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--disenoskessell-shadow-sm);
    z-index: 1000;
    padding: 20px 0;
}

.disenoskessell-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disenoskessell-company-name {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--disenoskessell-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.disenoskessell-nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.disenoskessell-nav-list a {
    text-decoration: none;
    color: var(--disenoskessell-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.disenoskessell-nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--disenoskessell-gradient-1);
    transition: width 0.3s ease;
}

.disenoskessell-nav-list a:hover,
.disenoskessell-nav-list a.active {
    color: var(--disenoskessell-primary);
}

.disenoskessell-nav-list a:hover::after,
.disenoskessell-nav-list a.active::after {
    width: 100%;
}

.disenoskessell-main {
    margin-top: 100px;
}

.disenoskessell-about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--disenoskessell-gradient-1);
    padding: 120px 0 80px;
}

.disenoskessell-about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.disenoskessell-about-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.disenoskessell-about-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--disenoskessell-white);
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.disenoskessell-about-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--disenoskessell-accent);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.disenoskessell-about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--disenoskessell-white);
}

.disenoskessell-about-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.disenoskessell-about-hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.disenoskessell-about-intro {
    padding: 120px 0;
    background: var(--disenoskessell-white);
}

.disenoskessell-about-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.disenoskessell-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center;
}

.disenoskessell-about-intro-text {
    display: grid;
    gap: 24px;
}

.disenoskessell-about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--disenoskessell-gray);
}

.disenoskessell-mission-vision {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--disenoskessell-bg) 0%, var(--disenoskessell-white) 100%);
}

.disenoskessell-mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.disenoskessell-mission-card,
.disenoskessell-vision-card {
    background: var(--disenoskessell-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--disenoskessell-shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.disenoskessell-mission-card::before,
.disenoskessell-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--disenoskessell-gradient-1);
}

.disenoskessell-mission-card:hover,
.disenoskessell-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--disenoskessell-shadow-lg);
}

.disenoskessell-mission-icon,
.disenoskessell-vision-icon {
    width: 80px;
    height: 80px;
    background: var(--disenoskessell-gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: var(--disenoskessell-shadow-sm);
}

.disenoskessell-mission-icon .material-icons,
.disenoskessell-vision-icon .material-icons {
    font-size: 40px;
    color: var(--disenoskessell-white);
}

.disenoskessell-mission-title,
.disenoskessell-vision-title {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
    margin-bottom: 20px;
}

.disenoskessell-mission-text,
.disenoskessell-vision-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--disenoskessell-gray);
}

.disenoskessell-values {
    padding: 120px 0;
    background: var(--disenoskessell-white);
}

.disenoskessell-values-header {
    text-align: center;
    margin-bottom: 80px;
}

.disenoskessell-section-title-center {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
    margin-bottom: 16px;
}

.disenoskessell-section-subtitle {
    font-size: 20px;
    color: var(--disenoskessell-gray);
}

.disenoskessell-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.disenoskessell-value-card {
    background: var(--disenoskessell-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.disenoskessell-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--disenoskessell-shadow-md);
    border-color: var(--disenoskessell-primary-light);
}

.disenoskessell-value-icon {
    width: 70px;
    height: 70px;
    background: var(--disenoskessell-gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--disenoskessell-shadow-sm);
}

.disenoskessell-value-icon .material-icons {
    font-size: 36px;
    color: var(--disenoskessell-white);
}

.disenoskessell-value-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
    margin-bottom: 12px;
}

.disenoskessell-value-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--disenoskessell-gray);
}

.disenoskessell-commitment {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--disenoskessell-white) 0%, var(--disenoskessell-bg) 100%);
}

.disenoskessell-commitment-header {
    text-align: center;
    margin-bottom: 80px;
}

.disenoskessell-commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.disenoskessell-commitment-card {
    background: var(--disenoskessell-white);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--disenoskessell-shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.disenoskessell-commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--disenoskessell-shadow-xl);
    border-color: var(--disenoskessell-primary-light);
}

.disenoskessell-commitment-icon {
    width: 90px;
    height: 90px;
    background: var(--disenoskessell-gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--disenoskessell-shadow-sm);
}

.disenoskessell-commitment-icon .material-icons {
    font-size: 48px;
    color: var(--disenoskessell-white);
}

.disenoskessell-commitment-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
    margin-bottom: 16px;
}

.disenoskessell-commitment-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--disenoskessell-gray);
}

.disenoskessell-timeline {
    padding: 120px 0;
    background: var(--disenoskessell-white);
}

.disenoskessell-timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.disenoskessell-timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}

.disenoskessell-timeline-container::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--disenoskessell-gradient-1);
}

.disenoskessell-timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 60px;
}

.disenoskessell-timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--disenoskessell-white);
    border: 4px solid var(--disenoskessell-primary);
    border-radius: 50%;
    box-shadow: var(--disenoskessell-shadow-sm);
    transform: translateX(-50%);
    left: 16px;
}

.disenoskessell-timeline-content {
    background: var(--disenoskessell-bg);
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: var(--disenoskessell-shadow-sm);
    transition: all 0.3s ease;
}

.disenoskessell-timeline-item:hover .disenoskessell-timeline-content {
    box-shadow: var(--disenoskessell-shadow-md);
    transform: translateX(5px);
}

.disenoskessell-timeline-year {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 900;
    background: var(--disenoskessell-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.disenoskessell-timeline-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
    margin-bottom: 12px;
}

.disenoskessell-timeline-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--disenoskessell-gray);
    margin-bottom: 16px;
}

.disenoskessell-timeline-link {
    display: inline-block;
    color: var(--disenoskessell-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.disenoskessell-timeline-link:hover {
    transform: translateX(5px);
}

.disenoskessell-footer {
    background: var(--disenoskessell-dark);
    color: var(--disenoskessell-white);
    padding: 80px 0 40px;
}

.disenoskessell-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.disenoskessell-footer-brand {
    max-width: 300px;
}

.disenoskessell-footer-company-name {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--disenoskessell-white);
}

.disenoskessell-footer-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--disenoskessell-gray-light);
    margin-top: 20px;
}

.disenoskessell-footer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--disenoskessell-white);
}

.disenoskessell-footer-list {
    list-style: none;
}

.disenoskessell-footer-list li {
    margin-bottom: 12px;
}

.disenoskessell-footer-list a {
    color: var(--disenoskessell-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.disenoskessell-footer-list a:hover {
    color: var(--disenoskessell-white);
}

.disenoskessell-footer-contact a {
    color: var(--disenoskessell-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.disenoskessell-footer-contact a:hover {
    color: var(--disenoskessell-white);
}

.disenoskessell-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
}

.disenoskessell-footer-copyright {
    font-size: 14px;
    color: var(--disenoskessell-gray-light);
}

.disenoskessell-privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--disenoskessell-dark);
    color: var(--disenoskessell-white);
    padding: 20px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.disenoskessell-privacy-banner.show {
    transform: translateY(0);
}

.disenoskessell-privacy-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.disenoskessell-privacy-banner-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 300px;
}

.disenoskessell-privacy-banner-text .material-icons {
    font-size: 24px;
    color: var(--disenoskessell-primary-light);
    flex-shrink: 0;
}

.disenoskessell-privacy-banner-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: var(--disenoskessell-gray-light);
}

.disenoskessell-privacy-banner-text a {
    color: var(--disenoskessell-primary-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.disenoskessell-privacy-banner-text a:hover {
    color: var(--disenoskessell-white);
}

.disenoskessell-privacy-banner-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.disenoskessell-privacy-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.disenoskessell-privacy-btn-accept {
    background: var(--disenoskessell-gradient-1);
    color: var(--disenoskessell-white);
    box-shadow: var(--disenoskessell-shadow-sm);
}

.disenoskessell-privacy-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--disenoskessell-shadow-md);
}

.disenoskessell-privacy-btn-link {
    background: transparent;
    color: var(--disenoskessell-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.disenoskessell-privacy-btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--disenoskessell-white);
}

@media (max-width: 1024px) {
    .disenoskessell-mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .disenoskessell-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .disenoskessell-commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .disenoskessell-container {
        padding: 0 20px;
    }

    .disenoskessell-header-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
    }

    .disenoskessell-nav-list {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .disenoskessell-about-hero {
        padding: 100px 0 60px;
    }

    .disenoskessell-about-hero-title {
        font-size: 36px;
    }

    .disenoskessell-about-hero-subtitle {
        font-size: 18px;
    }

    .disenoskessell-section-title,
    .disenoskessell-section-title-center {
        font-size: 36px;
    }

    .disenoskessell-values-grid {
        grid-template-columns: 1fr;
    }

    .disenoskessell-commitment-grid {
        grid-template-columns: 1fr;
    }

    .disenoskessell-timeline-container {
        padding-left: 30px;
    }

    .disenoskessell-timeline-container::before {
        left: 16px;
    }

    .disenoskessell-timeline-item {
        padding-left: 50px;
    }

    .disenoskessell-timeline-marker {
        left: 16px;
    }

    .disenoskessell-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .disenoskessell-privacy-banner {
        padding: 16px 20px;
    }

    .disenoskessell-privacy-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .disenoskessell-privacy-banner-text {
        min-width: auto;
        width: 100%;
    }

    .disenoskessell-privacy-banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .disenoskessell-privacy-btn {
        width: 100%;
    }
}

