* {
    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 {
    color: var(--disenoskessell-primary);
}

.disenoskessell-nav-list a:hover::after {
    width: 100%;
}

.disenoskessell-main {
    margin-top: 100px;
}

.disenoskessell-breadcrumb {
    background: var(--disenoskessell-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--disenoskessell-gray-light);
}

.disenoskessell-breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.disenoskessell-breadcrumb-link {
    color: var(--disenoskessell-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.disenoskessell-breadcrumb-link:hover {
    color: var(--disenoskessell-primary);
}

.disenoskessell-breadcrumb-content .material-icons {
    font-size: 18px;
    color: var(--disenoskessell-gray-light);
}

.disenoskessell-breadcrumb-current {
    color: var(--disenoskessell-dark);
    font-weight: 600;
    font-size: 14px;
}

.disenoskessell-history-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--disenoskessell-gradient-1);
    padding: 80px 0 60px;
}

.disenoskessell-history-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.disenoskessell-history-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.disenoskessell-history-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--disenoskessell-white);
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.disenoskessell-history-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-history-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--disenoskessell-white);
}

.disenoskessell-history-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.disenoskessell-history-hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.disenoskessell-history-foundation,
.disenoskessell-history-expansion,
.disenoskessell-history-future {
    padding: 120px 0;
}

.disenoskessell-history-foundation {
    background: var(--disenoskessell-white);
}

.disenoskessell-history-expansion {
    background: linear-gradient(180deg, var(--disenoskessell-bg) 0%, var(--disenoskessell-white) 100%);
}

.disenoskessell-history-future {
    background: var(--disenoskessell-white);
}

.disenoskessell-history-milestones {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--disenoskessell-white) 0%, var(--disenoskessell-bg) 100%);
}

.disenoskessell-history-section {
    max-width: 1000px;
    margin: 0 auto;
}

.disenoskessell-history-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.disenoskessell-history-section-icon {
    width: 70px;
    height: 70px;
    background: var(--disenoskessell-gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--disenoskessell-shadow-md);
}

.disenoskessell-history-section-icon .material-icons {
    font-size: 36px;
    color: var(--disenoskessell-white);
}

.disenoskessell-history-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
}

.disenoskessell-history-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.disenoskessell-history-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.disenoskessell-history-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--disenoskessell-gray);
}

.disenoskessell-history-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.disenoskessell-history-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--disenoskessell-gray);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.disenoskessell-history-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--disenoskessell-primary);
    font-size: 24px;
    line-height: 1;
}

.disenoskessell-history-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--disenoskessell-shadow-lg);
}

.disenoskessell-history-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.disenoskessell-history-image:hover img {
    transform: scale(1.05);
}

.disenoskessell-history-milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.disenoskessell-history-milestone-card {
    background: var(--disenoskessell-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--disenoskessell-shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.disenoskessell-history-milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--disenoskessell-shadow-xl);
    border-color: var(--disenoskessell-primary-light);
}

.disenoskessell-history-milestone-year {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: var(--disenoskessell-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.disenoskessell-history-milestone-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--disenoskessell-dark);
    margin-bottom: 12px;
}

.disenoskessell-history-milestone-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--disenoskessell-gray);
}

.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-history-section-content {
        grid-template-columns: 1fr;
    }

    .disenoskessell-history-milestones-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-history-hero {
        padding: 60px 0 40px;
    }

    .disenoskessell-history-hero-title {
        font-size: 32px;
    }

    .disenoskessell-history-hero-subtitle {
        font-size: 18px;
    }

    .disenoskessell-history-section-title {
        font-size: 32px;
    }

    .disenoskessell-history-milestones-grid {
        grid-template-columns: 1fr;
    }

    .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%;
    }
}

