/* CSS Variables */
:root {
    --header-height: 80px;
    --hero-top-gap: 8rem;
    /* 128px from header to eyebrow */
    --hero-bottom-gap: 1.5rem;
    /* 24px - tighter gap below */
    --hero-min-height: clamp(24rem, calc((100vh - var(--header-height)) * 0.5), 42rem);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Fira Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    padding: 5px 0 0 0;
}

.logo-image {
    height: 32px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section - トップページ用 */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-family: 'Fira Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        2px 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.3),
        1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Section Base */
.section {
    padding: 6rem 0;
}

.section:nth-child(even) {
    background-color: #fafafa;
}

.section-title {
    font-family: 'Fira Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #1a1a1a;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    justify-content: center;
}

.hero-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.hero-button--primary {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
}

.hero-button--primary:hover {
    background-color: #333;
    border-color: #333;
}

.hero-button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.hero-button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mission Section */
.mission {
    background-color: #f5f5f5;
}

.mission-body {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.mission-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}

/* Services Section */
.section-lead {
    text-align: center;
    color: #666;
    font-size: 1.125rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #666;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card__description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card__link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card__link:hover {
    color: #666;
}

/* Why UMT Section */
.why-umt {
    background-color: #f5f5f5;
}

.why-umt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.why-umt-item {
    background: #ffffff;
    padding: 2rem;
    border-left: 3px solid #1a1a1a;
}

.why-umt-item__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.why-umt-item__text {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #ffffff;
    padding: 5rem 0;
}

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

.contact-cta__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-cta__text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-cta__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-cta__button--primary {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
}

.contact-cta__button--primary:hover {
    background-color: transparent;
    color: #ffffff;
}

.contact-cta__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.contact-cta__button--secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Founder Section */
.founder-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.founder-name {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.founder-title {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.founder-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.founder-external-positions {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Topics Section */
.topic-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.topic-title {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.topic-description {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.topic-link {
    margin-top: 1rem;
}

.external-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.external-link:hover {
    color: #666;
}

.external-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #666;
    transition: width 0.3s ease;
}

.external-link:hover::after {
    width: 100%;
}

/* Corporate Section */
.corporate-content {
    max-width: 800px;
    margin: 0 auto;
}

.corporate-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.corporate-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.corporate-table tr:last-child {
    border-bottom: none;
}

.corporate-label {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 1.5rem;
    background-color: #fafafa;
    text-align: left;
    width: 150px;
    vertical-align: top;
}

.corporate-table td {
    font-size: 1rem;
    color: #555;
    padding: 1.5rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-label {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 1.1rem;
    color: #555;
}

.contact-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: #666;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #666;
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

/* News Card Component */
.news-grid__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    padding: 0.5rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    width: 100%;
    overflow: hidden;
}

.news-card__image img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.news-card__image--logo img {
    max-width: 70%;
    max-height: 70%;
}

.news-card__content {
    padding: 2rem;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-card__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.news-card__date {
    color: #999;
    font-family: 'Fira Sans', sans-serif;
}

.news-card__category {
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.news-card__excerpt {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__arrow {
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Homepage News Grid - 3 columns auto-fill */
.news-grid__items--homepage {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

@media (max-width: 480px) {
    .news-grid__items--homepage {
        grid-template-columns: 1fr;
    }
}

/* Category Tabs */
.category-tabs {
    padding: 2rem 0;
    background: transparent;
}

.category-tabs__list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .category-tabs__list {
        gap: 1rem;
    }
}

.category-tabs__item {
    display: inline-block;
}

.category-tabs__link {
    color: #999;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-tabs__link:hover {
    color: #666;
}

.category-tabs__link--active {
    color: #1a1a1a;
    border-color: transparent;
}

/* News More Link */
.news-more {
    text-align: center;
    margin-top: 3rem;
}

.news-more__link {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.news-more__link:hover {
    color: #666;
}

.news-more__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #666;
    transition: width 0.3s ease;
}

.news-more__link:hover::after {
    width: 100%;
}

/* Services More Link */
.services-more {
    text-align: center;
    margin-top: 3rem;
}

.services-more__link {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.services-more__link:hover {
    color: #666;
}

.services-more__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #666;
    transition: width 0.3s ease;
}

.services-more__link:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 2rem 0;
    text-align: center;
}

.footer-text {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header-content {
        height: 70px;
    }

    .nav {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .hero {
        padding: 10rem 0 6rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .founder-card {
        padding: 2rem;
    }

    .topic-card {
        padding: 2rem;
    }

    .corporate-label {
        width: 120px;
        font-size: 0.9rem;
        padding: 1rem;
    }

    .corporate-table td {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .nav {
        gap: 1rem;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .founder-card {
        padding: 1.5rem;
    }

    .topic-card {
        padding: 1.5rem;
    }

    .corporate-label {
        width: 100px;
        font-size: 0.85rem;
        padding: 0.75rem;
    }

    .corporate-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* News Section */
.news-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: #666;
}

.news-item__link {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
}

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

.news-item__date {
    color: #666;
    font-size: 0.875rem;
}

.news-item__category {
    background-color: #1a1a1a;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 2px;
}

.news-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-item__excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-item__arrow {
    color: #666;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-item:hover .news-item__arrow {
    color: #1a1a1a;
}

.news-more {
    margin-top: 2rem;
    text-align: center;
}

.news-more__link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.news-more__link:hover {
    color: #1a1a1a;
    border-color: #666;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-button {
        width: 200px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-umt-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-cta__button {
        width: 250px;
        text-align: center;
    }

    .news-item__link {
        padding: 1.5rem;
    }

    .news-item__title {
        font-size: 1.125rem;
    }
}

/* Page Hero - 共通ヒーローセクション（各ページ用） */
.page-hero {
    min-height: var(--hero-min-height);
    padding: calc(var(--header-height) + var(--hero-top-gap)) 0 var(--hero-bottom-gap);
    display: flex;
    align-items: flex-start;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.page-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.page-hero__eyebrow {
    display: inline-block;
    background: transparent;
    color: #666;
    padding: 0.4rem 0.9rem;
    font-family: 'Fira Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    align-self: center;
}

.page-hero__title {
    font-family: 'Fira Sans', sans-serif;
    font-size: clamp(2.75rem, 6vw, 4rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
}

.page-hero__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
}

.page-hero__cta {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    align-self: center;
}

.page-hero__cta:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* モディファイア */
.page-hero--center {
    text-align: center;
}

.page-hero--center .page-hero__lead {
    margin: 0 auto;
}

.page-hero--left {
    text-align: left;
}

/* ページ固有のオーバーレイ（Visualizations用） */
.page-hero[data-hero="services"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg,
            rgba(0, 0, 0, 0.04) 0,
            rgba(0, 0, 0, 0.04) 1px,
            transparent 1px,
            transparent 24px);
    opacity: 0.12;
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Cookie Consent Banner */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    z-index: 2000;
    border-top: 1px solid #666;
}

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

.cookie-consent__text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e5e5e5;
    margin: 0;
    flex: 1;
}

.cookie-consent__link {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent__link:hover {
    color: #e5e5e5;
}

.cookie-consent__buttons {
    display: flex;
    gap: 1rem;
}

.cookie-consent__button {
    background: transparent;
    color: #ffffff;
    border: 1px solid #666;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cookie-consent__button--accept {
    background-color: #666;
}

.cookie-consent__button--accept:hover {
    background-color: #999;
    border-color: #999;
}

.cookie-consent__button--reject:hover {
    background-color: rgba(102, 102, 102, 0.1);
    border-color: #999;
}

@media (max-width: 768px) {
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .cookie-consent__buttons {
        justify-content: center;
    }
}