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

/* Hand-drawn font imports */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Caveat:wght@400;500;600;700&display=swap');

/* CSS Variables for Hand-drawn Theme */
:root {
    --primary-color: #2E7D32;
    --secondary-color: #FF6F00;
    --accent-color: #1976D2;
    --text-color: #2C2C2C;
    --light-gray: #F5F5F5;
    --border-color: #BDBDBD;
    --shadow-color: rgba(46, 125, 50, 0.15);
    --sketch-primary: #2E7D32;
    --sketch-secondary: #FF6F00;
    --sketch-accent: #1976D2;
}

body {
    font-family: 'Kalam', cursive;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #FEFEFE;
    overflow-x: hidden;
}

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

/* Hand-drawn border effects */
.sketch-border {
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transform: rotate(-0.5deg);
}

.sketch-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    transform: rotate(1deg);
    z-index: -1;
}

/* Wavy underlines for headings */
.wavy-underline {
    position: relative;
    display: inline-block;
}

.wavy-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' stroke='%23FF6F00' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 20px 10px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 L20,3 L40,7 L60,2 L80,8 L100,5' stroke='%232E7D32' stroke-width='3' fill='none'/%3E%3C/svg%3E") 3 repeat;
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transform-origin: center;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0,0 Q50,20 100,0 L100,20 Q50,40 0,20 Z' fill='%23E8F5E8' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 200px 100px;
    z-index: 0;
}

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

.hero-text h1 {
    font-family: 'Caveat', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.7;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(-1deg);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 3px 3px 0 var(--secondary-color);
}

.btn-primary:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 5px 5px 0 var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    transform: rotate(1deg);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(0deg) translateY(-2px);
}

.hero-graphic {
    text-align: center;
    position: relative;
}

.hero-graphic img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 15px var(--shadow-color));
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
}

.about h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' stroke='%23FF6F00' stroke-width='3' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.stat:nth-child(even) {
    transform: rotate(2deg);
}

.stat:hover {
    transform: rotate(0deg) scale(1.05);
}

.stat h3 {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F7FF 100%);
    position: relative;
}

.services h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'%3E%3Cpath d='M0,5 Q30,0 60,5 T120,5' stroke='%231976D2' stroke-width='3' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
    position: relative;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 8px 8px 0 var(--secondary-color);
}

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

.service-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 12px 12px 0 var(--secondary-color);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Caveat', cursive;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
    position: relative;
}

.testimonials h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' stroke='%23FF6F00' stroke-width='3' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    position: relative;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonial-author h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F5E8 100%);
}

.blog h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.blog h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 10'%3E%3Cpath d='M0,5 Q35,0 70,5 T140,5' stroke='%231976D2' stroke-width='3' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--secondary-color);
}

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

.blog-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 var(--secondary-color);
}

.blog-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 2px solid var(--accent-color);
}

.blog-content {
    padding: 25px;
}

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

.blog-content h3 a {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

.blog-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Blog Article Sections */
.blog-article {
    padding: 120px 0 80px 0;
    background: white;
    min-height: 60vh;
}

.blog-article.hidden {
    display: none;
}

.blog-article h2 {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.article-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.back-to-blog {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--secondary-color);
}

/* Subscription Section */
.subscription {
    padding: 100px 0;
    background: linear-gradient(135deg, #2E7D32 0%, #1976D2 100%);
    color: white;
    position: relative;
}

.subscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='2' fill='white' opacity='0.1'/%3E%3Ccircle cx='80' cy='40' r='1.5' fill='white' opacity='0.1'/%3E%3Ccircle cx='60' cy='80' r='2.5' fill='white' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.subscription .container {
    position: relative;
    z-index: 1;
}

.subscription h2 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.subscription > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.subscription-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 25px;
    border: 3px solid var(--secondary-color);
    transform: rotate(-1deg);
    color: var(--text-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.checkbox-group a:hover {
    text-decoration: underline;
}

.error-message {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.subscription-form .btn-primary {
    width: 100%;
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 15px;
    transform: rotate(0deg);
}

/* Legal Section */
.legal {
    padding: 60px 0;
    background: var(--light-gray);
    text-align: center;
}

.legal h2 {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.legal-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.legal-links a:nth-child(even) {
    transform: rotate(1deg);
}

.legal-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(0deg);
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 60px 0 30px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 L20,2 L40,8 L60,3 L80,7 L100,5' stroke='%23FF6F00' stroke-width='5' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 50px 10px;
}

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

.footer-section h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

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

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

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

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

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

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

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

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

.close {
    color: var(--text-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 25px;
}

.close:hover {
    color: var(--secondary-color);
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    background: var(--light-gray);
}

.cookie-category h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px var(--shadow-color);
    z-index: 1500;
    transform: rotate(-1deg);
    max-width: 500px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cookie-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.4;
}

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

.cookie-buttons button {
    padding: 8px 15px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    background: white;
    color: var(--primary-color);
    font-family: 'Kalam', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-buttons button:first-child {
    background: var(--primary-color);
    color: white;
}

.cookie-buttons button:hover {
    background: var(--primary-color);
    color: white;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F7FF 100%);
    padding: 40px 20px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
    box-shadow: 10px 10px 0 var(--secondary-color);
    transform: rotate(-1deg);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-color);
}

.next-steps {
    text-align: left;
    margin: 40px 0;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.next-steps h2 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.next-steps li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-emergency {
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    background: #F0F7FF;
}

.contact-emergency h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.contact-emergency a {
    color: var(--accent-color);
    text-decoration: none;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px var(--shadow-color);
        border-top: 3px solid var(--primary-color);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .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;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 30px 20px;
    }
    
    .thanks-content {
        padding: 40px 25px;
        transform: rotate(0deg);
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about h2,
    .services h2,
    .testimonials h2,
    .blog h2,
    .subscription h2 {
        font-size: 2.2rem;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        transform: rotate(0deg);
    }
    
    .subscription-form {
        transform: rotate(0deg);
        padding: 25px;
    }
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--secondary-color);
    color: white;
}

::-moz-selection {
    background: var(--secondary-color);
    color: white;
}
