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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #28a745;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--secondary-color);
}

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

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

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

.main-nav {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d66 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1528698827591-e19ccd7bc23d?w=1600&h=800&fit=crop') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

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

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-primary {
    background: var(--secondary-color);
    color: #fff;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.intro-block {
    padding: 80px 20px;
    background: var(--light-color);
}

.intro-block h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.intro-block p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-preview {
    padding: 90px 20px;
    background: #fff;
}

.section-header-offset {
    margin-bottom: 50px;
}

.section-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.service-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    padding: 50px 40px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateX(10px);
}

.dark-bg {
    background: var(--dark-color);
    color: #fff;
}

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

.accent-bg {
    background: #e8f5e9;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.service-icon {
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 25px 0;
    color: var(--secondary-color);
}

.dark-bg .price-tag,
.gradient-bg .price-tag {
    color: #ffd700;
}

.btn-select-service {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-select-service.inline {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-left: 15px;
}

.trust-section {
    padding: 90px 20px;
    background: var(--light-color);
}

.container-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content,
.trust-image {
    flex: 1;
}

.trust-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonials-inline {
    padding: 80px 20px;
    background: #fff;
}

.testimonial {
    border-left: 4px solid var(--secondary-color);
    padding: 30px;
    margin: 30px 0;
    background: var(--light-color);
    border-radius: 5px;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial footer {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.value-proposition {
    padding: 90px 20px;
    background: var(--light-color);
}

.value-proposition h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.value-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

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

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-section-dark {
    padding: 80px 20px;
    background: var(--dark-color);
    color: #fff;
}

.cta-section-dark h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section-dark p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.additional-services {
    padding: 70px 20px;
    background: #fff;
}

.additional-services h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: var(--dark-color);
}

.services-list {
    list-style: none;
}

.services-list li {
    padding: 20px;
    margin: 15px 0;
    background: var(--light-color);
    border-radius: 5px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-section {
    padding: 90px 20px;
    background: var(--light-color);
}

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.form-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #1a4d66;
    transform: translateY(-2px);
}

.final-cta {
    padding: 90px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #229954 100%);
    color: #fff;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.main-footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.footer-section ul li {
    margin: 10px 0;
}

.footer-section a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background: var(--secondary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    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: 30px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: #fff;
}

.btn-accept:hover {
    background: #218838;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reject:hover {
    background: #fff;
    color: var(--dark-color);
}

.page-header {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d66 100%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 20px;
    background: #fff;
}

.about-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.milestone-section {
    padding: 90px 20px;
    background: var(--light-color);
}

.milestone-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--shadow);
}

.timeline-item .year {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.timeline-item h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.values-section {
    padding: 80px 20px;
    background: #fff;
}

.values-section h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-block {
    padding: 35px;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
}

.value-block h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-block p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.team-section {
    padding: 90px 20px;
    background: var(--light-color);
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 60px;
    color: #666;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-member .role {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.why-us-section {
    padding: 80px 20px;
    background: #fff;
}

.why-us-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.why-us-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-about {
    padding: 80px 20px;
    background: var(--primary-color);
    color: #fff;
}

.cta-about h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.services-detail {
    padding: 60px 20px;
    background: #fff;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--light-color);
    border-radius: 8px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image,
.service-info {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 5px solid var(--secondary-color);
}

.price-main {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.price-note {
    font-size: 0.95rem;
    color: #666;
}

.service-benefits {
    padding: 80px 20px;
    background: var(--light-color);
}

.service-benefits h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 20px;
    background: #fff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details,
.contact-map {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
}

.contact-faq {
    padding: 80px 20px;
    background: var(--light-color);
}

.contact-faq h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 20px;
    background: var(--primary-color);
    color: #fff;
}

.contact-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--light-color);
    min-height: 70vh;
}

.success-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--success-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.next-steps {
    margin: 50px 0;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.steps-list {
    text-align: left;
    padding-left: 40px;
    font-size: 1.1rem;
    line-height: 2;
}

.thanks-actions {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
}

.contact-reminder p {
    font-size: 1.05rem;
}

.legal-page {
    padding: 60px 20px;
    background: #fff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.last-update {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-page li {
    margin: 10px 0;
    font-size: 1.05rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-primary,
    .cta-secondary {
        display: block;
        margin: 10px auto;
    }

    .container-split {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .services-list li {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .btn-select-service.inline {
        margin-left: 0;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .section-header-offset h2,
    .page-header h1 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px 5px;
    }
}