/* Hand-drawn Style CSS for traveler-waves.com */
/* Modern German Architecture Website */

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

/* Hand-drawn Font Stack */
body {
    font-family: 'Kalam', 'Caveat', cursive, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FEFEFE;
    overflow-x: hidden;
}

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

/* Hand-drawn Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-family: 'Kalam', cursive;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid;
    cursor: pointer;
    background: none;
    transform: rotate(-0.5deg);
}

.btn:hover {
    transform: rotate(0.5deg) scale(1.05);
    box-shadow: 3px 3px 10px rgba(44, 95, 65, 0.2);
}

.btn-primary {
    background-color: #2C5F41;
    color: white;
    border-color: #2C5F41;
}

.btn-primary:hover {
    background-color: #1e4129;
    border-color: #1e4129;
}

.btn-secondary {
    background-color: transparent;
    color: #2C5F41;
    border-color: #2C5F41;
}

.btn-secondary:hover {
    background-color: #2C5F41;
    color: white;
}

.btn-tertiary {
    background-color: #F39C12;
    color: white;
    border-color: #F39C12;
}

/* Header Styles */
.header {
    background-color: #FFFFFF;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-bottom: 3px solid #2C5F41;
    transform: rotate(-0.2deg);
    margin-top: 2px;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2C5F41;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Caveat', cursive;
    transform: rotate(1deg);
}

/* Navigation */
.navigation {
    display: flex;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(-0.3deg);
}

.nav-link:hover,
.nav-link.active {
    background-color: #2C5F41;
    color: white;
    transform: rotate(0.3deg);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2C5F41;
    border-radius: 2px;
    transition: 0.3s;
    transform: rotate(-1deg);
}

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

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232C5F41' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C5F41;
    margin-bottom: 20px;
    font-family: 'Caveat', cursive;
    line-height: 1.2;
    transform: rotate(-1deg);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5D6D7E;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.hero-banner {
    width: 100%;
    height: auto;
    transform: rotate(1deg);
    filter: drop-shadow(3px 3px 10px rgba(0,0,0,0.1));
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
    transform: rotate(-2deg);
}

.section-title {
    font-size: 2.5rem;
    color: #2C5F41;
    margin-bottom: 15px;
    font-family: 'Caveat', cursive;
    font-weight: 600;
    transform: rotate(0.5deg);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7F8C8D;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.about-text h3 {
    font-size: 1.8rem;
    color: #2C5F41;
    margin-bottom: 20px;
    font-family: 'Caveat', cursive;
    transform: rotate(-0.5deg);
}

.about-text p {
    margin-bottom: 20px;
    color: #5D6D7E;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .about-stats {
    grid-template-columns: 1fr;
}
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    border: 2px solid #E8F5E8;
}

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

.stat:nth-child(3) {
    transform: rotate(-0.5deg);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2C5F41;
    font-family: 'Caveat', cursive;
}

.stat-label {
    font-size: 0.9rem;
    color: #7F8C8D;
    margin-top: 5px;
}

.about-img {
    width: 100%;
    height: auto;
    transform: rotate(1.5deg);
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.1));
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid #E8F5E8;
    transform: rotate(-1deg);
}

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

.service-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.service-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 10px 35px rgba(44, 95, 65, 0.2);
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #2C5F41;
    margin-bottom: 15px;
    font-family: 'Caveat', cursive;
}

.service-card p {
    color: #7F8C8D;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 100%);
}

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    position: relative;
    border: 3px solid #E8F5E8;
    transform: rotate(1deg);
}

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

.testimonial-card:nth-child(3) {
    transform: rotate(0.5deg);
}

.testimonial-card:before {
    content: '"';
    font-size: 4rem;
    color: #2C5F41;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Caveat', cursive;
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    color: #5D6D7E;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #2C5F41;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Caveat', cursive;
}

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

/* Blog Section */
.blog-preview-section,
.blog-section {
    background-color: #F8F9FA;
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid #E8F5E8;
    transform: rotate(-0.5deg);
}

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

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

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

.blog-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 10px 35px rgba(44, 95, 65, 0.2);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2C5F41;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transform: rotate(-2deg);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #7F8C8D;
    flex-wrap: wrap;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
}

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

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

.blog-content p {
    color: #5D6D7E;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: #E8F5E8;
    color: #2C5F41;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    transform: rotate(-1deg);
}

.tag:nth-child(2) {
    transform: rotate(1deg);
}

.tag:nth-child(3) {
    transform: rotate(-0.5deg);
}

.read-more {
    color: #2C5F41;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.read-more:hover {
    border-bottom-color: #2C5F41;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2C5F41 0%, #1e4129 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0 11-9 20-20 20s-20-9-20-20 9-20 20-20 20 9 20 20z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: 'Caveat', cursive;
    transform: rotate(-0.5deg);
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 3px solid #E8F5E8;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Kalam', cursive;
    background: white;
    color: #2C3E50;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
}

.form-group input:focus,
.form-group textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2C5F41;
    transform: rotate(0deg);
    box-shadow: 0 0 15px rgba(44, 95, 65, 0.2);
}

.form-group textarea,
.contact-form textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    text-align: left;
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 4px;
    position: relative;
    transform: rotate(-2deg);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-weight: bold;
}

.checkbox-label a {
    color: #F39C12;
    text-decoration: underline;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border: 3px solid #E8F5E8;
    transform: rotate(-1deg);
}

.contact-item:nth-child(2) {
    transform: rotate(1deg);
}

.contact-item:nth-child(3) {
    transform: rotate(-0.5deg);
}

.contact-item:nth-child(4) {
    transform: rotate(1.5deg);
}

.contact-item h4 {
    color: #2C5F41;
    margin-bottom: 10px;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
}

.contact-item p {
    color: #5D6D7E;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 3px solid #E8F5E8;
    transform: rotate(1deg);
}

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

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

.footer-section h4 {
    color: #F39C12;
    margin-bottom: 20px;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    transform: rotate(-0.5deg);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 35px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Caveat', cursive;
    color: #F39C12;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #F39C12;
}

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

.social-links a {
    color: #BDC3C7;
    transition: color 0.3s ease;
    transform: rotate(-2deg);
}

.social-links a:hover {
    color: #F39C12;
    transform: rotate(2deg);
}

.footer-contact p {
    color: #BDC3C7;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495E;
    color: #95A5A6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 100%);
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    color: #2C5F41;
    margin-bottom: 15px;
    font-family: 'Caveat', cursive;
    transform: rotate(-0.5deg);
}

.page-header p {
    font-size: 1.1rem;
    color: #7F8C8D;
}

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 100%);
    padding: 120px 0 40px;
    margin-top: 70px;
}

.article-breadcrumb {
    font-size: 0.9rem;
    color: #7F8C8D;
    margin-bottom: 20px;
}

.article-breadcrumb a {
    color: #2C5F41;
    text-decoration: none;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #7F8C8D;
    flex-wrap: wrap;
}

.article-category {
    background: #2C5F41;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    transform: rotate(-1deg);
}

.article-header h1 {
    font-size: 2.8rem;
    color: #2C5F41;
    margin-bottom: 20px;
    font-family: 'Caveat', cursive;
    line-height: 1.2;
    transform: rotate(0.5deg);
}

.article-lead {
    font-size: 1.2rem;
    color: #5D6D7E;
    line-height: 1.6;
    font-style: italic;
}

.article-content {
    padding: 60px 0;
}

.article-image {
    text-align: center;
    margin-bottom: 50px;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transform: rotate(-0.5deg);
}

.article-image figcaption {
    font-size: 0.9rem;
    color: #7F8C8D;
    margin-top: 10px;
    font-style: italic;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2C3E50;
}

.article-body h2 {
    font-size: 2rem;
    color: #2C5F41;
    margin: 40px 0 20px;
    font-family: 'Caveat', cursive;
    transform: rotate(-0.3deg);
}

.article-body h3 {
    font-size: 1.6rem;
    color: #2C5F41;
    margin: 30px 0 15px;
    font-family: 'Caveat', cursive;
    transform: rotate(0.3deg);
}

.article-body h4 {
    font-size: 1.3rem;
    color: #2C5F41;
    margin: 25px 0 12px;
    font-family: 'Caveat', cursive;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    background: #F8F9FA;
    border-left: 4px solid #2C5F41;
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 15px 15px 0;
    transform: rotate(-0.2deg);
}

.article-body blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #7F8C8D;
    font-style: normal;
}

.article-conclusion {
    background: #E8F5E8;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border: 3px solid #2C5F41;
    transform: rotate(0.5deg);
}

.article-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #E8F5E8;
}

.article-tags h4 {
    margin-bottom: 15px;
    color: #2C5F41;
    font-family: 'Caveat', cursive;
}

/* Related Articles */
.related-articles {
    background: #F8F9FA;
    padding: 60px 0;
}

.related-articles h3 {
    text-align: center;
    font-size: 2rem;
    color: #2C5F41;
    margin-bottom: 40px;
    font-family: 'Caveat', cursive;
    transform: rotate(-0.5deg);
}

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

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid #E8F5E8;
    transform: rotate(-1deg);
}

.related-card:nth-child(2) {
    transform: rotate(1deg);
}

.related-card:hover {
    transform: rotate(0deg) translateY(-5px);
}

.related-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-content h4 a {
    color: #2C5F41;
    text-decoration: none;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
}

.related-content p {
    color: #7F8C8D;
    margin-top: 10px;
    font-size: 0.95rem;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2C3E50;
}

.legal-text h2 {
    color: #2C5F41;
    margin: 40px 0 20px;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    transform: rotate(-0.3deg);
}

.legal-text h3 {
    color: #2C5F41;
    margin: 30px 0 15px;
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    transform: rotate(0.3deg);
}

.legal-text h4 {
    color: #2C5F41;
    margin: 25px 0 12px;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
}

.contact-box {
    background: #E8F5E8;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid #2C5F41;
    transform: rotate(-0.5deg);
}

/* Cookie Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid #2C5F41;
    padding: 20px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text h4 {
    color: #2C5F41;
    margin-bottom: 10px;
    font-family: 'Caveat', cursive;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.hidden {
    display: none;
}

.cookie-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 3px solid #2C5F41;
}

.cookie-modal-header {
    padding: 20px 30px;
    border-bottom: 2px solid #E8F5E8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h3 {
    color: #2C5F41;
    font-family: 'Caveat', cursive;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #7F8C8D;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 15px;
    border: 2px solid #E8F5E8;
}

.cookie-toggle {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 26px;
    background: #BDC3C7;
    border-radius: 13px;
    position: relative;
    transition: 0.3s;
    flex-shrink: 0;
    margin-top: 2px;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: 0.3s;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider {
    background: #2C5F41;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-info strong {
    color: #2C5F41;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
}

.cookie-info p {
    margin-top: 5px;
    color: #7F8C8D;
    font-size: 0.95rem;
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 2px solid #E8F5E8;
    text-align: center;
}

.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E8F5E8;
}

.cookie-table th {
    background: #2C5F41;
    color: white;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
}

.cookie-settings-button {
    text-align: center;
    margin: 30px 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #2C5F41;
    margin-bottom: 30px;
    font-family: 'Caveat', cursive;
    transform: rotate(-0.5deg);
}

.thank-you-message {
    font-size: 1.1rem;
    color: #5D6D7E;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.thank-you-info {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #E8F5E8;
    transform: rotate(0.5deg);
}

.thank-you-info h3 {
    color: #2C5F41;
    margin-bottom: 30px;
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2C5F41;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    transform: rotate(-3deg);
}

.step:nth-child(2) .step-number {
    transform: rotate(3deg);
}

.step:nth-child(3) .step-number {
    transform: rotate(-1deg);
}

.step h4 {
    color: #2C5F41;
    margin-bottom: 8px;
    font-family: 'Caveat', cursive;
}

.step p {
    color: #7F8C8D;
    font-size: 0.9rem;
}

.contact-info-section {
    background: #F8F9FA;
    padding: 60px 0;
}

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

.contact-info-grid .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.contact-icon {
    margin-bottom: 20px;
    transform: rotate(-2deg);
}

/* About Page Specific */
.about-content {
    padding: 60px 0;
}

.about-main {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2C3E50;
}

.about-text-content h2 {
    color: #2C5F41;
    margin: 40px 0 20px;
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    transform: rotate(-0.3deg);
}

.about-text-content h3 {
    color: #2C5F41;
    margin: 30px 0 15px;
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    transform: rotate(0.3deg);
}

.about-image-container {
    text-align: center;
    margin: 40px 0;
}

.about-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border: 2px solid #E8F5E8;
    transform: rotate(-0.5deg);
}

.feature-item:nth-child(2) {
    transform: rotate(0.5deg);
}

.feature-item:nth-child(3) {
    transform: rotate(-1deg);
}

.feature-icon {
    flex-shrink: 0;
    transform: rotate(2deg);
}

.feature-content h4 {
    color: #2C5F41;
    margin-bottom: 8px;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
}

.feature-content p {
    color: #7F8C8D;
    font-size: 0.95rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border: 2px solid #E8F5E8;
    transform: rotate(-1deg);
}

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

.stat-item:nth-child(3) {
    transform: rotate(-0.5deg);
}

.stat-item:nth-child(4) {
    transform: rotate(1.5deg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.value-item {
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border: 2px solid #E8F5E8;
    transform: rotate(-0.5deg);
}

.value-item:nth-child(2) {
    transform: rotate(0.5deg);
}

.value-item:nth-child(3) {
    transform: rotate(-1deg);
}

.value-item:nth-child(4) {
    transform: rotate(1deg);
}

.value-item h4 {
    color: #2C5F41;
    margin-bottom: 10px;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
}

.value-item p {
    color: #7F8C8D;
    font-size: 0.95rem;
}

.about-cta {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: #E8F5E8;
    border-radius: 20px;
    border: 3px solid #2C5F41;
    transform: rotate(-0.5deg);
}

.about-cta h3 {
    color: #2C5F41;
    margin-bottom: 15px;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
}

.about-cta p {
    color: #5D6D7E;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Blog Newsletter */
.blog-newsletter {
    background: #E8F5E8;
    padding: 50px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;
    border: 3px solid #2C5F41;
    transform: rotate(0.5deg);
}

.blog-newsletter h3 {
    color: #2C5F41;
    margin-bottom: 15px;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
}

.blog-newsletter p {
    color: #5D6D7E;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.blog-newsletter .newsletter-form {
    max-width: 500px;
}

.blog-newsletter .form-row {
    grid-template-columns: 1fr 1fr auto;
}

.blog-intro {
    text-align: center;
    margin-bottom: 60px;
}

.blog-intro h2 {
    font-size: 2.5rem;
    color: #2C5F41;
    margin-bottom: 20px;
    font-family: 'Caveat', cursive;
    transform: rotate(-0.5deg);
}

.blog-intro p {
    font-size: 1.1rem;
    color: #7F8C8D;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        transform: none;
        margin-top: 0;
    }
    
    .hero {
        padding: 100px 0 60px;
        margin-top: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-list {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        border-bottom: 3px solid #2C5F41;
        z-index: 999;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-list.mobile-active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-list.mobile-active .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #E8F5E8;
        border-radius: 0;
        text-align: center;
        font-size: 18px;
        transform: none;
    }
    
    .nav-list.mobile-active .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .team-stats,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-newsletter .form-row {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    /* Transform resets for mobile */
    .btn,
    .service-card,
    .testimonial-card,
    .blog-card,
    .contact-item,
    .stat,
    .feature-item,
    .stat-item,
    .value-item {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .cookie-modal-content {
        margin: 10px;
    }
    
    .blog-newsletter,
    .about-cta,
    .thank-you-info {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
    }
    
    .page-header,
    .article-header {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    section {
        page-break-inside: avoid;
        padding: 20pt 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn {
        border-width: 3px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        border: 2px solid white;
    }
    
    .blog-card,
    .service-card,
    .testimonial-card {
        border-width: 4px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transform: none !important;
    }
    
    .btn:hover,
    .blog-card:hover,
    .service-card:hover {
        transform: none !important;
    }
}

/* Focus Styles for Accessibility */
:focus {
    outline: 3px solid #F39C12;
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2C5F41;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10002;
}

.skip-link:focus {
    top: 6px;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles would go here if needed */
}
