/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

h4 {
    font-size: 1.4rem;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

a {
    color: #6b46c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #553c9a;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Layout utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #553c9a 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.3);
    color: #fff;
}

.btn-secondary {
    background: #f8fafc;
    color: #6b46c1;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: #6b46c1;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #6b46c1;
    border: 2px solid #6b46c1;
}

.btn-outline:hover {
    background: #6b46c1;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(107, 70, 193, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a2e;
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 2rem;
}

.nav-links a {
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    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"><circle cx="50" cy="50" r="1" fill="rgba(107,70,193,0.1)" opacity="0.5"><animate attributeName="r" values="1;2;1" dur="4s" repeatCount="indefinite"/></circle></svg>');
    animation: twinkle 8s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #6b46c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #64748b;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(107, 70, 193, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section styles */
section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background: #fefefe;
}

.services h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(107, 70, 193, 0.2));
}

.service-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

/* About Preview Section */
.about-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(107, 70, 193, 0.15));
}

/* Advantages Section */
.advantages {
    background: white;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-item h3 {
    color: #6b46c1;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    color: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card cite {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Section */
.blog {
    background: #fefefe;
}

.blog h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.15);
}

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

.blog-content {
    padding: 2rem;
}

.blog-content h3 a {
    color: #1a1a2e;
    font-size: 1.5rem;
}

.blog-content h3 a:hover {
    color: #6b46c1;
}

.read-more {
    color: #6b46c1;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.read-more:hover {
    gap: 1rem;
}

/* Subscription Section */
.subscription {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.subscription h2 {
    margin-bottom: 1rem;
}

.subscription-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-row input:focus {
    outline: none;
    border-color: #6b46c1;
}

.checkbox-row {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    text-align: left;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

/* Contact Section */
.contact {
    background: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.social-links h4 {
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.social-links a {
    display: inline-block;
    margin: 0 0.5rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 0 1rem 0;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section ul li a.active {
    color: #9333ea;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid #4a5568;
    border-radius: 0.375rem;
    background: #2d3748;
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #a0aec0;
}

.newsletter-form button {
    padding: 0.75rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    color: #fff;
}

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

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.cookie-category {
    margin-bottom: 1rem;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.cookie-category label:hover {
    background-color: #f8fafc;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

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

/* Legal Pages */
.legal-content {
    padding-top: 6rem;
}

.legal-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
    text-align: center;
}

.legal-hero h1 {
    margin-bottom: 0.5rem;
}

.legal-text {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    color: #1a1a2e;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #6b46c1;
}

.legal-text h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.cookie-table {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    border-left: 4px solid #6b46c1;
}

.cookie-settings-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 2rem 0;
}

/* Page Content */
.page-content {
    padding-top: 6rem;
}

.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-detailed {
    padding: 3rem 0;
}

.about-story {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.about-text {
    flex: 2;
}

.expertise-section {
    margin: 4rem 0;
}

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

.expertise-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.expertise-item h3 {
    color: #6b46c1;
    margin-bottom: 1rem;
}

.values-section {
    margin: 4rem 0;
}

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

.value-item {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.value-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-section,
.mission-section {
    margin: 4rem 0;
}

.contact-info-detailed {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.contact-info-detailed h3 {
    color: #6b46c1;
    margin-bottom: 1.5rem;
}

.contact-info-detailed a {
    color: #6b46c1;
    font-weight: 600;
}

/* Article Styles */
.article-content {
    padding-top: 6rem;
}

.article-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
}

.article-header {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.article-image {
    flex-shrink: 0;
}

.article-image img {
    width: 150px;
    height: 150px;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.2);
}

.article-info {
    flex: 1;
}

.article-info h1 {
    margin-bottom: 1rem;
    font-size: 2.8rem;
}

.article-meta {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.article-intro {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 500;
}

.article-body {
    padding: 4rem 0;
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e2e8f0;
}

.article-text h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #6b46c1;
}

.article-text h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-weight: 600;
}

.article-text ul,
.article-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-text ul li,
.article-text ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.article-text strong {
    color: #1a1a2e;
    font-weight: 600;
}

.article-navigation {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

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

.article-share p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.article-share a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.article-share a:hover {
    transform: scale(1.2);
}

/* Thanks Page Styles */
.thanks-content {
    padding-top: 6rem;
}

.thanks-hero {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

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

.thanks-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thanks-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.thanks-details {
    padding: 4rem 0;
}

.thanks-info {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.3);
}

.step-content h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.thanks-additional-info {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.thanks-additional-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.thanks-content-section {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

.thanks-content-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.suggestion-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-5px);
}

.suggestion-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(107, 70, 193, 0.2));
}

.suggestion-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.thanks-newsletter-section {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.thanks-newsletter-section h2 {
    margin-bottom: 1rem;
}

.newsletter-benefits {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.newsletter-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.newsletter-form-thanks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form-thanks input {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form-thanks input:focus {
    outline: none;
    border-color: #6b46c1;
}

.thanks-social-section {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.thanks-social-section h2 {
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #4a5568;
    min-width: 100px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.2);
    color: #6b46c1;
}

.social-icon {
    font-size: 2rem;
}

.social-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.thanks-return-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thanks-return-section h2 {
    margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content,
    .about-content,
    .about-story {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .article-header {
        flex-direction: column;
        text-align: center;
    }
    
    .article-info h1 {
        font-size: 2.5rem;
    }
    
    .next-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 6rem 0 3rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .services-grid,
    .advantages-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
    
    .return-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-brand a {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .article-text {
        font-size: 1rem;
    }
    
    .thanks-hero h1 {
        font-size: 2.5rem;
    }
    
    .thanks-subtitle {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-notice,
    .cookie-modal,
    .btn,
    .social-links,
    .newsletter-form {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    .page-content,
    .legal-content,
    .article-content,
    .thanks-content {
        padding-top: 0;
    }
    
    .article-text,
    .legal-text {
        max-width: none;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
}
