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

body {
    font-family: 'Comic Sans MS', 'Chalkduster', cursive, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

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

.hand-drawn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid currentColor;
    border-radius: inherit;
    transform: rotate(-0.5deg);
    opacity: 0.3;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #e9ecef;
    border-bottom-style: dashed;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: #2c3e50;
    text-decoration: none;
    transform: rotate(-1deg);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #007bff;
    color: white;
    transform: rotate(1deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transform-origin: center;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(40,167,69,0.6);
    border-color: rgba(255,255,255,0.3);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    transform: rotate(2deg);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

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

section:nth-child(even) {
    background: #007bff
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
    transform: rotate(-0.5deg);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    width: 100px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    border: 2px dashed #e9ecef;
}

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

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

.service-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* About Section */
.about-preview {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    color: white;
    text-align: left;
    margin-bottom: 2rem;
}

.about-content h2::after {
    background: white;
    left: 0;
    transform: rotate(1deg);
}

.learn-more {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.3);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.learn-more:hover {
    background: white;
    color: #f5576c;
    transform: rotate(1deg) scale(1.05);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: rotate(1deg);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    border-style: dotted;
}

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

.step:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: #007bff;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    transform: rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

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

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    border-style: wavy;
}

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

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

.testimonial:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #007bff;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Blog Section */
.blog-preview, .blog-articles {
    padding: 80px 0;
}

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

.blog-card, .article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    border: 2px dashed #e9ecef;
}

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

.blog-card:hover, .article-card:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.blog-card img, .article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3, .article-card h3 {
    padding: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.blog-card p, .article-card p {
    padding: 0 1rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-card a, .article-card a {
    display: inline-block;
    margin: 0 1rem 1rem;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid #007bff;
    border-radius: 20px;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.blog-card a:hover, .article-card a:hover {
    background: #007bff;
    color: white;
    transform: rotate(1deg) scale(1.05);
}

.view-all-blog {
    display: block;
    text-align: center;
    margin-top: 2rem;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: 2px solid #007bff;
    border-radius: 30px;
    max-width: 300px;
    margin: 2rem auto 0;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.view-all-blog:hover {
    background: #007bff;
    color: white;
    transform: rotate(1deg) scale(1.05);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact h2 {
    color: white;
}

.contact h2::after {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(1deg) scale(1.05);
}

/* Form Styles */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: white;
    transform: rotate(0deg) scale(1.02);
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.submit-btn {
    background: #28a745;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    font-family: inherit;
    border: 2px solid transparent;
}

.submit-btn:hover {
    background: #218838;
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
    border-color: rgba(255,255,255,0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    border-top: 3px dashed #34495e;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    transform: rotate(-1deg);
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
}

.footer-links a:hover,
.footer-links a.active {
    color: white;
    background: rgba(255,255,255,0.1);
    transform: rotate(1deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transform: rotate(-1deg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: #007bff;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    transform: rotate(-1deg);
    text-align: center;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #007bff;
    border-bottom: 2px dashed #007bff;
    padding-bottom: 0.5rem;
    text-align: left;
    transform: rotate(-0.5deg);
}

.legal-page h2::after {
    display: none;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
    transform: rotate(0.5deg);
}

.legal-page h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: #495057;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 2px dashed #dee2e6;
    transform: rotate(-0.5deg);
}

.legal-contact {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #2196f3;
    border-style: dotted;
    transform: rotate(0.5deg);
}

.legal-date {
    text-align: right;
    font-style: italic;
    color: #6c757d;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed #dee2e6;
}

/* Cookie Settings */
.cookie-settings {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px dashed #007bff;
    transform: rotate(-0.5deg);
}

.cookie-option {
    margin: 1.5rem 0;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.cookie-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.save-cookie-settings {
    background: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transform: rotate(1deg);
    transition: all 0.3s ease;
    font-family: inherit;
}

.save-cookie-settings:hover {
    background: #0056b3;
    transform: rotate(-1deg) scale(1.05);
}

.cookie-table {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 1px solid #dee2e6;
    transform: rotate(0.5deg);
}

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

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

.thank-you-icon {
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

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

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
    transform: rotate(-1deg);
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6c757d;
}

.thank-you-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.detail-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
    transform: rotate(-1deg);
}

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

.detail-item h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.detail-item ul {
    list-style: none;
    padding: 0;
}

.detail-item li {
    margin-bottom: 0.5rem;
    color: #28a745;
}

.phone-number {
    font-size: 1.3rem;
    margin: 1rem 0;
}

.phone-number a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.business-hours {
    color: #6c757d;
    font-size: 0.9rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #007bff;
    color: white;
    transform: rotate(-1deg);
}

.btn-primary:hover {
    background: #0056b3;
    transform: rotate(1deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(0,123,255,0.4);
}

.btn-secondary {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
    transform: rotate(1deg);
}

.btn-secondary:hover {
    background: #007bff;
    color: white;
    transform: rotate(-1deg) scale(1.05);
}

/* Quick Info */
.quick-info {
    margin-top: 3rem;
}

.quick-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    border-style: dotted;
}

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

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

.info-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.info-icon {
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #6c757d;
}

/* Recent Articles */
.recent-articles {
    background: #f8f9fa;
    padding: 60px 0;
}

/* Article Pages */
.article-page {
    padding: 120px 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 2rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #6c757d;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-meta {
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.article-meta span {
    margin-right: 1rem;
    padding: 0.3rem 0.8rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #dee2e6;
}

.article-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    transform: rotate(-1deg);
}

.article-intro {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.article-image {
    text-align: center;
    margin: 2rem 0;
}

.article-image img {
    max-width: 300px;
    width: 100%;
    transform: rotate(1deg);
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.1));
}

.article-content {
    line-height: 1.8;
}

.article-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #007bff;
    text-align: left;
    transform: rotate(-0.5deg);
}

.article-content h2::after {
    display: none;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
    transform: rotate(0.3deg);
}

.article-content h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: #495057;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-content ul {
    margin: 1rem 0 1rem 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.cost-comparison {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px dashed #007bff;
    transform: rotate(-0.5deg);
}

.cost-comparison h4 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transform: rotate(0.5deg);
}

/* Article Footer */
.article-footer {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px dashed #dee2e6;
}

.share-buttons {
    margin-bottom: 2rem;
}

.share-buttons span {
    margin-right: 1rem;
    font-weight: bold;
    color: #495057;
}

.share-buttons button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    font-family: inherit;
}

.share-buttons button:hover {
    background: #0056b3;
    transform: rotate(1deg) scale(1.05);
}

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

.article-navigation a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border: 2px solid #007bff;
    border-radius: 20px;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.article-navigation a:hover {
    background: #007bff;
    color: white;
    transform: rotate(1deg) scale(1.05);
}

.back-to-blog {
    transform: rotate(1deg) !important;
}

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

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

.related-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    border: 2px dashed #e9ecef;
}

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

.related-card:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.related-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.related-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.2rem;
}

.related-card a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid #007bff;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.related-card a:hover {
    background: #007bff;
    color: white;
    transform: rotate(1deg) scale(1.05);
}

/* About Page Specific */
.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.story-text h2::after {
    left: 0;
    transform: rotate(1deg);
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.story-image img {
    width: 100%;
    transform: rotate(2deg);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Mission & Values */
.mission-values {
    background: #f8f9fa;
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    border-style: dotted;
}

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

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

.value-card:nth-child(4) {
    transform: rotate(0.8deg);
}

.value-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.value-card h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    border: 2px dashed #e9ecef;
}

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

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

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

.stat:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.stat h3 {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6c757d;
    font-weight: bold;
}

/* Services Overview */
.services-overview {
    background: #f8f9fa;
    padding: 80px 0;
}

.detailed-services {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    border-style: dotted;
}

.service-detail:nth-child(2) {
    transform: rotate(0.5deg);
}

.service-detail:nth-child(3) {
    transform: rotate(-0.3deg);
}

.service-detail:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.service-detail img {
    width: 80px;
    height: 80px;
}

.service-content h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content h4 {
    color: #2c3e50;
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.service-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

.service-content li {
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

/* Coverage Area */
.coverage-area {
    padding: 80px 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.city {
    background: #007bff;
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 15px;
    font-weight: bold;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.city:hover {
    background: #0056b3;
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(0,123,255,0.4);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-cta h2::after {
    background: white;
}

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

/* Blog Article Content */
.article-content .blog-article {
    margin: 2rem 0;
}

/* Newsletter */
.newsletter-signup {
    background: #007bff;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter-signup h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-signup h2::after {
    background: white;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    color: #2c3e50;
}

.newsletter-form .submit-btn {
    background: #28a745;
    white-space: nowrap;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 1rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    border-top: 3px solid #007bff;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
    color: #007bff;
}

.cookie-content p {
    margin: 0;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    transform: rotate(-1deg);
}

.accept-all {
    background: #28a745;
    color: white;
}

.necessary-only {
    background: #6c757d;
    color: white;
}

.customize {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

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

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

.necessary-only:hover {
    background: #545b62;
}

.customize:hover {
    background: #007bff;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-top: 2px dashed #e9ecef;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

    .about-content,
    .contact-content,
    .story-content {
        grid-template-columns: 1fr;
    }

    .thank-you-details {
        grid-template-columns: 1fr;
    }

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

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .article-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .services-grid,
    .process-steps,
    .testimonials-grid,
    .values-grid,
    .team-stats {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    /* Reduce transforms on mobile for better readability */
    .service-card,
    .testimonial,
    .blog-card,
    .article-card,
    .step,
    .value-card,
    .stat,
    .info-card {
        transform: none !important;
    }

    .service-card:hover,
    .testimonial:hover,
    .blog-card:hover,
    .article-card:hover,
    .step:hover,
    .value-card:hover,
    .stat:hover,
    .info-card:hover {
        transform: scale(1.02) !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .article-page h1 {
        font-size: 2rem;
    }

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

    .legal-page h1 {
        font-size: 2.2rem;
    }

    .cta-button,
    .learn-more,
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }

    .service-card,
    .testimonial,
    .step,
    .value-card,
    .info-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .share-buttons,
    .cta-button,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }

    body {
        font-family: serif;
        color: black;
        background: white;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    * {
        transform: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black;
        page-break-after: avoid;
    }

    p, li {
        line-height: 1.4;
    }

    .legal-page,
    .article-page {
        padding: 20px 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transform: none !important;
    }

    .service-card:hover,
    .testimonial:hover,
    .blog-card:hover,
    .article-card:hover,
    .step:hover,
    .value-card:hover,
    .stat:hover,
    .info-card:hover {
        transform: none !important;
    }
}

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

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero,
    .about-preview,
    .contact,
    .contact-cta,
    .newsletter-signup {
        background: #000 !important;
        color: #fff !important;
    }

    .service-card,
    .testimonial,
    .step,
    .value-card,
    .info-card {
        border: 2px solid #000 !important;
        background: #fff !important;
        color: #000 !important;
    }
}
