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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

/* Brutalism Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    text-shadow: 4px 4px 0px #ff0000;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-shadow: 3px 3px 0px #0066ff;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    text-shadow: 2px 2px 0px #00ff00;
}

p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

/* Brutalist Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    border: 4px solid #000;
    cursor: pointer;
    transition: all 0.1s ease;
    position: relative;
    background: #fff;
    color: #000;
    box-shadow: 8px 8px 0px #000;
}

.btn-primary {
    background: #ff0000;
    color: #fff;
    border-color: #000;
}

.btn-primary:hover {
    background: #cc0000;
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #000;
}

.btn-secondary {
    background: #0066ff;
    color: #fff;
    border-color: #000;
}

.btn-secondary:hover {
    background: #0052cc;
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #000;
}

.btn-tertiary {
    background: #fff;
    color: #000;
    border-color: #000;
}

.btn-tertiary:hover {
    background: #f0f0f0;
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #000;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 6px solid #000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 6px 0px #ff0000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.logo-text {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #000;
    text-shadow: 2px 2px 0px #ff0000;
}

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

.nav-menu a {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    padding: 0.5rem 1rem;
    border: 3px solid transparent;
    transition: all 0.1s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-color: #000;
    background: #ff0000;
    color: #fff;
    box-shadow: 3px 3px 0px #000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #000;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #fff 0%, #f0f0f0 100%);
    padding: 150px 0 100px;
    border-bottom: 8px solid #000;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 0, 0, 0.1) 10px,
        rgba(255, 0, 0, 0.1) 20px
    );
    pointer-events: none;
}

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

.hero-text h1 {
    margin-bottom: 2rem;
    text-shadow: 4px 4px 0px #ff0000;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #333;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(8px 8px 0px #000);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
    border-bottom: 6px solid #000;
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 3px 3px 0px #0066ff;
}

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

.service-card {
    background: #fff;
    border: 6px solid #000;
    padding: 2rem;
    text-align: center;
    box-shadow: 12px 12px 0px #000;
    transition: all 0.1s ease;
    position: relative;
}

.service-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 16px 16px 0px #000;
}

.service-card:nth-child(1) {
    background: #ffff00;
}

.service-card:nth-child(2) {
    background: #00ff00;
}

.service-card:nth-child(3) {
    background: #ff00ff;
}

.service-card:nth-child(4) {
    background: #00ffff;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(4px 4px 0px #000);
}

.service-card h3 {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #000;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: #f0f0f0;
    border-bottom: 6px solid #000;
}

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

.about-text h2 {
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0px #00ff00;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #fff;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    font-weight: 700;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #00ff00;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 3px solid #000;
}

.about-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(8px 8px 0px #000);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #000;
    color: #fff;
    border-bottom: 6px solid #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    text-shadow: 3px 3px 0px #ff0000;
}

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

.testimonial-card {
    background: #fff;
    color: #000;
    border: 6px solid #fff;
    padding: 2rem;
    text-align: center;
    box-shadow: 12px 12px 0px #ff0000;
    position: relative;
}

.testimonial-card:nth-child(1) {
    background: #ffff00;
}

.testimonial-card:nth-child(2) {
    background: #00ff00;
}

.testimonial-card:nth-child(3) {
    background: #ff00ff;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(3px 3px 0px #000);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.testimonial-card cite {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Blog Preview Section */
.blog-preview {
    padding: 100px 0;
    background: #fff;
    border-bottom: 6px solid #000;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 3px 3px 0px #ff00ff;
}

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

.blog-card {
    background: #fff;
    border: 6px solid #000;
    padding: 2rem;
    box-shadow: 12px 12px 0px #000;
    transition: all 0.1s ease;
}

.blog-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 16px 16px 0px #000;
}

.blog-card:nth-child(1) {
    background: #ffcccc;
}

.blog-card:nth-child(2) {
    background: #ccffcc;
}

.blog-card:nth-child(3) {
    background: #ccccff;
}

.blog-card:nth-child(4) {
    background: #ffffcc;
}

.blog-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(3px 3px 0px #000);
}

.blog-card h3 {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #000;
}

.blog-card p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 3px solid #000;
    transition: all 0.1s ease;
}

.read-more:hover {
    background: #333;
    transform: translate(2px, 2px);
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f0f0f0;
    border-bottom: 6px solid #000;
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 3px 3px 0px #00ffff;
}

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

.contact-info h3 {
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0px #ff0000;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #000;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: #ff0000;
}

.contact-form {
    background: #fff;
    border: 6px solid #000;
    padding: 2rem;
    box-shadow: 12px 12px 0px #000;
}

.contact-form h3 {
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 0px #0066ff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 4px solid #000;
    background: #fff;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.1s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #ffffcc;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
    border-top: 6px solid #fff;
}

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

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

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: invert(1) drop-shadow(3px 3px 0px #ff0000);
}

.footer-brand p {
    margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: #ff0000;
    text-shadow: 2px 2px 0px #fff;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.1s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #00ff00;
    text-shadow: 2px 2px 0px #000;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.5rem 1rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    border: 3px solid #fff;
    transition: all 0.1s ease;
}

.social-links a:hover {
    background: #ff0000;
    color: #fff;
    transform: translate(2px, 2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 3px solid #333;
    font-weight: 700;
}

/* Cookie Banner and Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 2rem;
    z-index: 1001;
    border-top: 6px solid #ff0000;
    box-shadow: 0 -6px 0px #ff0000;
}

.cookie-content h3 {
    margin-bottom: 1rem;
    color: #ff0000;
    text-shadow: 2px 2px 0px #fff;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.modal-content {
    background: #fff;
    border: 8px solid #000;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 16px 16px 0px #000;
}

.modal-content h3 {
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 0px #0066ff;
}

.cookie-option {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 3px solid #000;
    background: #f0f0f0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ff0000;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(45deg, #ff0000 0%, #0066ff 100%);
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
    border-bottom: 8px solid #000;
}

.page-hero h1 {
    text-shadow: 4px 4px 0px #000;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    text-shadow: 2px 2px 0px #000;
}

/* Legal pages */
.legal-page {
    padding: 150px 0 100px;
    background: #fff;
}

.legal-page h1 {
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 4px 4px 0px #ff0000;
}

.last-updated {
    text-align: center;
    font-style: italic;
    margin-bottom: 3rem;
    color: #666;
}

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #000;
    border-bottom: 4px solid #ff0000;
    padding-bottom: 0.5rem;
}

.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0066ff;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border: 4px solid #000;
}

.cookies-table th,
.cookies-table td {
    border: 2px solid #000;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

.cookies-table th {
    background: #000;
    color: #fff;
    text-transform: uppercase;
}

.cookies-table tr:nth-child(even) {
    background: #f0f0f0;
}

.cookie-settings {
    text-align: center;
    margin: 2rem 0;
}

/* Blog styles */
.blog-full {
    padding: 100px 0;
    background: #fff;
}

.blog-article {
    padding: 150px 0 50px;
    background: #fff;
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
}

.article-header h1 {
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0px #ff0000;
}

.article-meta {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.article-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    filter: drop-shadow(6px 6px 0px #000);
}

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

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #000;
    border-bottom: 4px solid #0066ff;
    padding-bottom: 0.5rem;
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.article-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.article-cta {
    background: #ffffcc;
    border: 6px solid #000;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 12px 12px 0px #000;
}

.article-cta h3 {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #ff0000;
}

.related-articles {
    padding: 50px 0 100px;
    background: #f0f0f0;
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 3px 3px 0px #00ff00;
}

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

/* About page styles */
.about-full {
    padding: 100px 0;
    background: #fff;
}

.values {
    padding: 100px 0;
    background: #f0f0f0;
    border-bottom: 6px solid #000;
}

.values h2 {
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 3px 3px 0px #ff00ff;
}

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

.value-card {
    background: #fff;
    border: 6px solid #000;
    padding: 2rem;
    text-align: center;
    box-shadow: 12px 12px 0px #000;
    transition: all 0.1s ease;
}

.value-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 16px 16px 0px #000;
}

.value-card:nth-child(1) { background: #ffcccc; }
.value-card:nth-child(2) { background: #ccffcc; }
.value-card:nth-child(3) { background: #ccccff; }
.value-card:nth-child(4) { background: #ffffcc; }

.value-card h3 {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #000;
}

.team {
    padding: 100px 0;
    background: #fff;
    border-bottom: 6px solid #000;
}

.team h2 {
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 3px 3px 0px #00ffff;
}

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

.team-list {
    list-style: none;
    margin: 2rem 0;
}

.team-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f0f0f0;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px #000;
    font-weight: 700;
}

.experience {
    padding: 100px 0;
    background: #000;
    color: #fff;
    border-bottom: 6px solid #fff;
}

.experience h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    text-shadow: 3px 3px 0px #ff0000;
}

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

.stat-card {
    background: #fff;
    color: #000;
    border: 6px solid #fff;
    padding: 2rem;
    text-align: center;
    box-shadow: 12px 12px 0px #ff0000;
}

.stat-card:nth-child(1) { background: #ffff00; }
.stat-card:nth-child(2) { background: #00ff00; }
.stat-card:nth-child(3) { background: #ff00ff; }
.stat-card:nth-child(4) { background: #00ffff; }

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 0px #000;
}

.cta {
    padding: 100px 0;
    background: linear-gradient(45deg, #ff0000 0%, #0066ff 100%);
    color: #fff;
    text-align: center;
    border-bottom: 6px solid #000;
}

.cta h2 {
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0px #000;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 0px #000;
}

/* Thanks page */
.thanks-page {
    padding: 150px 0 100px;
    background: linear-gradient(45deg, #00ff00 0%, #ffff00 100%);
    text-align: center;
}

.thanks-content h1 {
    margin-bottom: 2rem;
    text-shadow: 4px 4px 0px #000;
}

.thanks-message {
    background: #fff;
    border: 8px solid #000;
    padding: 3rem;
    box-shadow: 16px 16px 0px #000;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

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

.step {
    background: #f0f0f0;
    border: 4px solid #000;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 8px 8px 0px #000;
}

.step h3 {
    margin-bottom: 1rem;
    color: #ff0000;
    text-shadow: 2px 2px 0px #000;
}

.contact-reminder {
    background: #ffffcc;
    border: 4px solid #000;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 8px 8px 0px #000;
}

.contact-reminder h3 {
    margin-bottom: 1rem;
    color: #0066ff;
    text-shadow: 2px 2px 0px #000;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Newsletter */
.newsletter {
    padding: 100px 0;
    background: #000;
    color: #fff;
    text-align: center;
    border-bottom: 6px solid #fff;
}

.newsletter h2 {
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 3px 3px 0px #ff0000;
}

.newsletter p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 4px solid #fff;
    background: #fff;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 4px 4px 0px #fff;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #ff0000;
    color: #fff;
    border: 4px solid #fff;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 4px 4px 0px #fff;
    transition: all 0.1s ease;
}

.newsletter-form button:hover {
    background: #cc0000;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border: 6px solid #000;
        border-top: none;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 6px 0px #ff0000;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

    .social-links {
        justify-content: center;
    }

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

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }

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

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

    .nav {
        padding: 1rem 15px;
    }

    .hero,
    .services,
    .about-preview,
    .testimonials,
    .blog-preview,
    .contact {
        padding: 80px 0;
    }

    .page-hero {
        padding: 120px 0 80px;
    }

    .legal-page,
    .blog-article {
        padding: 120px 0 80px;
    }

    .service-card,
    .testimonial-card,
    .blog-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Hidden class for JavaScript */
.hidden {
    display: none !important;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-banner {
    animation: slideIn 0.3s ease-out;
}

.cookie-modal {
    animation: fadeIn 0.3s ease-out;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal {
        display: none !important;
    }
    
    .hero {
        padding-top: 50px;
    }
    
    .page-hero,
    .legal-page,
    .blog-article {
        padding-top: 50px;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}
