* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5aa0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

main {
    margin-top: 80px;
}

.hero {
    background: linear-gradient(135deg, #a3a9c3 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    width: fit-content;
}

.age-warning svg {
    color: #ffd700;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background: #ee5a5a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2c5aa0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    color: #667eea;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefits-list svg {
    color: #4caf50;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    color: #667eea;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #5a67d8;
}

.testimonials {
    padding: 100px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2c5aa0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.testimonial-card blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-card cite {
    font-weight: 600;
    color: #2c5aa0;
}

.resources {
    padding: 80px 0;
    background: #667eea;
    color: white;
    text-align: center;
}

.resources h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.resources p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.resource-link svg {
    flex-shrink: 0;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-full h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.contact-info-full > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.method-icon {
    color: #667eea;
    flex-shrink: 0;
}

.method-content h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.method-content p:last-child {
    font-size: 0.95rem;
    color: #888;
}

.why-contact h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-benefits {
    list-style: none;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-benefits svg {
    color: #4caf50;
    flex-shrink: 0;
}

.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.contact-form select:focus {
    outline: none;
    border-color: #667eea;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        position: static;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

.blog-main {
    padding: 100px 0;
}

.blog-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.blog-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-date {
    color: #888;
    font-size: 0.9rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.blog-content h3 a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #667eea;
}

.blog-content > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #f8f9fa;
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e1e5e9;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.author-info svg {
    color: #667eea;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2c5aa0;
}

.blog-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-intro h2 {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.article-page {
    padding: 120px 0 50px;
}

.article-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb svg {
    color: #bbb;
}

.breadcrumb span {
    color: #666;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.article-category {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-date {
    color: #888;
    font-size: 0.9rem;
}

.article-header h1 {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.author-avatar {
    color: #667eea;
}

.author-info h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-image {
    margin-bottom: 2rem;
}

.article-image img {
    width: 100%;
    border-radius: 15px;
}

.article-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #667eea;
}

.article-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c5aa0;
    margin: 0;
    font-weight: 500;
}

.article-content h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.article-content h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.article-content h4 {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.article-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: #2c5aa0;
}

.strategy-box,
.important-note {
    background: #e3f2fd;
    border: 1px solid #667eea;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.strategy-box h3,
.important-note h3 {
    color: #2c5aa0;
    margin-top: 0;
    margin-bottom: 1rem;
}

.technique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.technique-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.technique-card h4 {
    color: #2c5aa0;
    margin-top: 0;
    margin-bottom: 1rem;
}

.halt-box {
    background: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.halt-box h3 {
    color: #e65100;
    margin-bottom: 0.5rem;
}

.halt-box p {
    margin-bottom: 1rem;
}

.communication-examples {
    margin: 1.5rem 0;
}

.example-good,
.example-bad {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 10px;
}

.example-good {
    background: #e8f5e8;
    border-left: 4px solid #4caf50;
}

.example-bad {
    background: #ffeaa7;
    border-left: 4px solid #ff9800;
}

.example-good h4,
.example-bad h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.example-good p,
.example-bad p {
    margin: 0;
    font-style: italic;
}

.boundary-list {
    background: #f3e5f5;
    border: 1px solid #9c27b0;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.boundary-list h4 {
    color: #7b1fa2;
    margin-top: 0;
}

.self-care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.self-care-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.self-care-card h4 {
    color: #2c5aa0;
    margin-top: 0;
    margin-bottom: 1rem;
}

.avoid-list {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.avoid-list h3 {
    color: #c62828;
    margin-bottom: 1rem;
}

.article-conclusion {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.article-conclusion h2 {
    color: white;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.article-conclusion p {
    color: white;
    opacity: 0.9;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.article-cta {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .article-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .technique-grid,
    .self-care-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        flex-wrap: wrap;
    }
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1.5rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-text svg {
    color: #667eea;
    flex-shrink: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-decline {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4caf50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-decline {
    background: transparent;
    color: #bdc3c7;
    border: 2px solid #bdc3c7;
}

.btn-decline:hover {
    background: #bdc3c7;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }



    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-text {
        justify-content: center;
    }
    
    /* Legal pages responsive */
    .legal-document {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .usage-grid,
    .rights-grid,
    .payment-grid,
    .crisis-resources {
        grid-template-columns: 1fr;
    }
    
    .legal-document h2 {
        font-size: 1.5rem;
    }
    
    .legal-document h3 {
        font-size: 1.2rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 3rem 0;
    background: #f8fafc;
}

.legal-document {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.last-updated {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.privacy-intro,
.terms-intro {
    margin-bottom: 3rem;
}

.privacy-highlight,
.terms-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #e0e7ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.privacy-highlight svg,
.terms-highlight svg {
    color: #667eea;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.privacy-highlight h3,
.terms-highlight h3 {
    color: #2c5aa0;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.privacy-highlight p,
.terms-highlight p {
    margin: 0;
    color: #475569;
}

.legal-document h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e7ff;
}

.legal-document h3 {
    color: #374151;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.legal-document ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-document ul li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.legal-document ul li strong {
    color: #374151;
}

.legal-document ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-document ol li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.usage-card,
.payment-card,
.right-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.usage-card h3,
.payment-card h3,
.right-card h3 {
    color: #2c5aa0;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.usage-card ul,
.payment-card ul {
    margin: 0;
    padding-left: 1.5rem;
}

.usage-card ul li,
.payment-card ul li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.legal-document .important-note {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.legal-document .important-note h3 {
    color: #92400e;
    margin: 0 0 1rem 0;
}

.legal-document .important-note p {
    color: #92400e;
    margin: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-card p {
    color: #475569;
    margin: 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.eligibility-requirements {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #0284c7;
    margin: 1.5rem 0;
}

.eligibility-requirements h3 {
    color: #0284c7;
    margin: 0 0 1rem 0;
}

.eligibility-requirements ul {
    margin: 0;
    padding-left: 1.5rem;
}

.eligibility-requirements ul li {
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.liability-notice {
    background: #fef2f2;
    border: 1px solid #f87171;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.liability-notice h3 {
    color: #dc2626;
    margin: 0 0 1rem 0;
}

.liability-notice p {
    color: #dc2626;
    margin: 0;
    font-weight: 500;
}

.emergency-info {
    background: #fef2f2;
    border: 2px solid #dc2626;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.emergency-info h3 {
    color: #dc2626;
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
}

.emergency-info p {
    color: #dc2626;
    margin: 1rem 0;
}

.emergency-info ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.emergency-info ul li {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-privacy,
.contact-terms {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #0284c7;
    margin: 2rem 0;
}

.contact-privacy h3,
.contact-terms h3 {
    color: #0284c7;
    margin: 0 0 1rem 0;
}

.contact-privacy p,
.contact-terms p {
    color: #0369a1;
    margin: 1rem 0;
}

.legal-document .contact-details {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #bae6fd;
}

.legal-document .contact-details p {
    margin: 0.5rem 0;
    color: #374151;
}

.final-note,
.acknowledgment {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #22c55e;
    margin: 2rem 0;
}

.final-note h3,
.acknowledgment h3 {
    color: #16a34a;
    margin: 0 0 1rem 0;
}

.final-note p,
.acknowledgment p {
    color: #15803d;
    margin: 1rem 0;
}

.crisis-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.crisis-card {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #dc2626;
    text-align: center;
}

.crisis-card h3 {
    color: #dc2626;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.crisis-number {
    font-size: 2rem;
    font-weight: bold;
    color: #dc2626;
    margin: 1rem 0;
    letter-spacing: 1px;
}

.crisis-card p {
    color: #7f1d1d;
    margin: 0.5rem 0;
}

/* Thank You Page Styles */
.thankyou-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.thankyou-content h1 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thankyou-content > p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.crisis-info {
    background: #fef2f2;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #dc2626;
}

.crisis-info p {
    color: #dc2626;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .thankyou-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
} 