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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 16px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #27ae60;
    color: white;
}

.btn-cookie.accept:hover {
    background: #229954;
}

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-main {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2c3e50;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3498db;
}

.hero-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95), rgba(41, 128, 185, 0.95)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.intro-block {
    padding: 90px 20px;
    background: #f8f9fa;
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.expertise-section {
    padding: 100px 20px;
    background: #ffffff;
}

.expertise-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.expertise-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.expertise-image {
    flex: 1;
}

.expertise-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.services-highlight {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.services-highlight h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    color: #333;
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card.featured {
    border: 3px solid #f39c12;
    position: relative;
}

.service-card.featured::before {
    content: 'SUOSITUS';
    position: absolute;
    top: -15px;
    right: 20px;
    background: #f39c12;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card .price {
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.btn-select {
    width: 100%;
    padding: 14px 25px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.process-section {
    padding: 90px 20px;
    background: #ecf0f1;
}

.process-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    background: #3498db;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.step-content p {
    font-size: 16px;
    color: #555;
}

.testimonials-section {
    padding: 100px 20px;
    background: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #777;
}

.additional-services {
    padding: 100px 20px;
    background: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.additional-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.additional-service {
    background: white;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.additional-service h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.additional-service .price {
    font-size: 24px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 20px;
}

.additional-service p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
}

.info-section {
    padding: 90px 20px;
    background: #ffffff;
}

.info-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.info-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.stats-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.stats-grid {
    display: flex;
    gap: 50px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #3498db;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

.form-section {
    padding: 100px 20px;
    background: #ecf0f1;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    opacity: 0.85;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.page-hero {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.content-section {
    padding: 80px 20px;
    background: #ffffff;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.content-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.team-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.team-member {
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

.team-member .role {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    color: #666;
}

.values-section {
    padding: 90px 20px;
    background: #ffffff;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.value-item p {
    font-size: 17px;
    color: #555;
}

.mission-section {
    padding: 100px 20px;
    background: #ecf0f1;
}

.mission-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.mission-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.credentials-section {
    padding: 80px 20px;
    background: #ffffff;
}

.credentials-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.credentials-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.highlight {
    background: #fff3cd;
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
    color: #856404;
    font-weight: 600;
    margin-bottom: 15px;
}

.savings {
    background: #d4edda;
    padding: 12px 18px;
    border-radius: 6px;
    color: #155724;
    font-weight: 600;
    margin-top: 20px;
}

.pricing-note {
    padding: 80px 20px;
    background: #f8f9fa;
}

.pricing-note h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.pricing-note p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.contact-detail a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.faq-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.faq-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #2e7d32;
    font-weight: 600;
}

.thanks-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    background: #f8f9fa;
    padding: 30px 40px;
    border-radius: 10px;
}

.next-steps li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.contact-info-box {
    background: #fff3cd;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #856404;
    font-weight: 700;
}

.contact-info-box p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #856404;
}

.contact-info-box a {
    color: #856404;
    font-weight: 700;
}

.legal-section {
    padding: 80px 20px;
    background: #ffffff;
}

.legal-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 800;
}

.updated {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 700;
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-section ul li,
.legal-section ol li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background: #ecf0f1;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #bdc3c7;
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ecf0f1;
    color: #555;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .expertise-grid,
    .mission-content,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

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

    .services-cards,
    .additional-grid {
        flex-direction: column;
        align-items: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .stats-grid {
        flex-direction: column;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    .page-hero h1 {
        font-size: 32px;
    }

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}
