/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fef9f0;
    font-size: 16px;
}

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

/* Hand-drawn styling utilities */
.hand-drawn {
    position: relative;
}

.hand-drawn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid #4CAF50;
    border-radius: 15px;
    transform: rotate(-1deg);
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.5rem;
    transform: rotate(-1deg);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    transform: rotate(0.5deg);
}

h3 {
    font-size: 1.5rem;
    transform: rotate(-0.5deg);
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid;
    background: none;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    position: relative;
    transform: rotate(-1deg);
    margin: 5px;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    border-color: #45a049;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background-color: #45a049;
    transform: rotate(1deg) scale(1.05);
    box-shadow: 6px 6px 12px rgba(0,0,0,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4CAF50;
    border-color: #4CAF50;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background-color: #4CAF50;
    color: white;
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 6px 6px 12px rgba(0,0,0,0.2);
}

.btn-tertiary {
    background-color: #FF6B6B;
    color: white;
    border-color: #FF5252;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
}

.btn-tertiary:hover {
    background-color: #FF5252;
    transform: rotate(1deg) scale(1.05);
    box-shadow: 6px 6px 12px rgba(0,0,0,0.3);
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transform: rotate(-0.2deg);
    border-bottom: 4px solid #4CAF50;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(1deg);
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4CAF50;
}

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

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: #4CAF50;
    transform: rotate(-1deg);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #4CAF50;
    transition: width 0.3s ease;
    transform: rotate(2deg);
}

.nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.3"/></svg>');
    background-size: 200px 200px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f8f9fa;
    transform: rotate(0.5deg);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
    transform: rotate(2deg);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.3));
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    transform: rotate(-0.5deg);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: #f8f9fa;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,10 Q50,30 90,10 Q70,50 90,90 Q50,70 10,90 Q30,50 10,10 Z" fill="none" stroke="rgba(76,175,80,0.1)" stroke-width="2"/></svg>');
    background-size: 300px 300px;
    opacity: 0.5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    transform: rotate(-0.5deg);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #4CAF50;
}

.about-text ul {
    list-style: none;
    margin-top: 2rem;
}

.about-text li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #555;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    text-align: center;
    transform: rotate(1deg);
}

.about-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.2));
}

/* Services Section */
.services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 3px solid #4CAF50;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.service-card:nth-child(even) {
    transform: rotate(1deg);
}

.service-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.2);
}

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

.service-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.2));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #555;
}

.service-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 12px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    border: 3px solid #FFD700;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card:nth-child(even) {
    transform: rotate(-1deg);
}

.testimonial-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.2);
}

.testimonial-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #FFD700;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    color: #4CAF50;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Blog Section */
.blog {
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.blog-card {
    background-color: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 3px solid #FF6B6B;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.blog-card:nth-child(even) {
    transform: rotate(0.5deg);
}

.blog-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.2);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-placeholder {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #FF6B6B;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
}

.blog-article {
    padding: 150px 0 80px;
    background-color: #f8f9fa;
    min-height: 400px;
}

/* Subscribe Section */
.subscribe {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    position: relative;
}

.subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2" stroke-dasharray="5,5"/></svg>');
    background-size: 150px 150px;
    opacity: 0.5;
}

.subscribe-content {
    position: relative;
    z-index: 1;
}

.subscribe-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,0.2);
    transform: rotate(-0.5deg);
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: white;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    background-color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    transform: rotate(0deg);
    box-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: none;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-group.checkbox a {
    color: #FFD700;
    text-decoration: underline;
}

.form-group.checkbox a:hover {
    color: white;
}

/* Legal Section */
.legal {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    transform: rotate(-0.5deg);
}

.legal-links a:hover {
    color: #4CAF50;
    transform: rotate(0.5deg);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    background-size: 200px 200px;
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    transform: rotate(-0.5deg);
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4CAF50;
}

.contact-info p {
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-info strong {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.social-links a:hover {
    background-color: #4CAF50;
    transform: rotate(2deg) scale(1.1);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
}

/* Thanks Page */
.thanks {
    padding: 150px 0 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.thanks h1 {
    color: #4CAF50;
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.next-steps {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #4CAF50;
    margin: 40px 0;
    transform: rotate(-0.5deg);
    text-align: left;
}

.next-steps h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.thanks .contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #FFD700;
    transform: rotate(0.5deg);
    display: inline-block;
}

.thanks .contact-info h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.thanks .contact-info p {
    margin-bottom: 10px;
}

.thanks .contact-info a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

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

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 4px solid #4CAF50;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content h3 {
    color: #4CAF50;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 0;
    color: #bdc3c7;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.cookie-buttons button:hover {
    transform: rotate(1deg) scale(1.05);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 3px solid #4CAF50;
    transform: rotate(-0.5deg);
    max-height: 70vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}

.close:hover {
    color: #4CAF50;
}

.modal-text {
    margin-bottom: 20px;
}

.modal-text h3 {
    color: #4CAF50;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-text li {
    margin-bottom: 5px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Cookie Category Styles */
.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cookie-category h3 {
    margin: 0;
    color: #333;
}

.cookie-category p {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4CAF50;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #4CAF50;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 20px;
        border-top: 3px solid #4CAF50;
    }

    .nav.active {
        display: block;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 80vh;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}
