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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4f46e5;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #6366f1;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #4f46e5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-secondary:hover {
    background-color: #6366f1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

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

.nav-link {
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #6366f1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6366f1;
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #4b5563;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 2rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-option input {
    margin-right: 0.5rem;
}

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

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.hero-image {
    flex: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.about-text {
    flex: 1;
}

.about-text h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stat span {
    color: #6b7280;
    font-size: 0.9rem;
}

.about-image {
    flex: 1;
}

.about-img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: #f8fafc;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

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

.service-card p {
    color: #6b7280;
}

/* Advantages Section */
.advantages {
    padding: 6rem 0;
    background-color: #ffffff;
}

.advantages-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.advantages-image {
    flex: 1;
}

.advantages-img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.advantages-list {
    flex: 1;
}

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

.advantage-item h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.advantage-item p {
    color: #6b7280;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: #f8fafc;
}

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

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #1f2937;
    display: block;
}

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

/* Blog Section */
.blog {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date,
.blog-category {
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-category {
    background-color: #e5e7eb;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: #1f2937;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #6366f1;
}

.blog-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    color: #4f46e5;
}

/* Subscription Section */
.subscription {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
}

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

.subscription-text {
    flex: 1;
}

.subscription-text h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.subscription-text p {
    color: #e5e7eb;
}

.subscription-form {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #6366f1;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #374151;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 35px;
    width: auto;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #374151;
    color: #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #6366f1;
    color: #ffffff;
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: #6366f1;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #374151;
    border-radius: 0.5rem;
    background-color: #374151;
    color: #ffffff;
}

.newsletter-input input::placeholder {
    color: #9ca3af;
}

.newsletter-input button {
    padding: 0.75rem 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.page-hero-content h1 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Us Page Styles */
.company-story {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.story-text {
    flex: 2;
}

.story-text h2 {
    color: #1f2937;
    margin-bottom: 2rem;
}

.story-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
}

.story-img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.mission-vision {
    padding: 6rem 0;
    background-color: #f8fafc;
}

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

.mission-card,
.vision-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-card h3,
.vision-card h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: #6b7280;
}

.values {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
}

.team {
    padding: 6rem 0;
    background-color: #f8fafc;
}

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

.team-member {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.member-info h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: #6b7280;
}

.contact-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

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

.contact-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
}

.contact-image {
    flex: 1;
}

.contact-img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Thank You Page */
.thank-you {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thanks-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.thank-you h1 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.thank-you-details {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-details h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.next-steps li {
    color: #6b7280;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.thank-you-actions {
    margin-bottom: 3rem;
}

.thank-you-actions .btn {
    margin: 0 0.5rem;
}

.social-connect {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.social-connect h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-connect p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

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

.social-connect .social-link {
    width: 50px;
    height: 50px;
}

/* Legal Pages */
.legal-content {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.legal-header h1 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-body h2 {
    color: #1f2937;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-body h3 {
    color: #374151;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-body li {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.contact-details {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #374151;
}

.cookie-table td {
    color: #6b7280;
}

/* Article Pages */
.article-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.article-date,
.article-category {
    font-size: 0.875rem;
    color: #6b7280;
}

.article-category {
    background-color: #e5e7eb;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

.article-header h1 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.article-excerpt {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.featured-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.article-content .container {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
}

.article-body {
    flex: 3;
    max-width: 800px;
}

.article-body h2 {
    color: #1f2937;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

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

.article-body p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.article-body li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-body strong {
    color: #374151;
    font-weight: 600;
}

.article-sidebar {
    flex: 1;
    min-width: 300px;
}

.sidebar-section {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-section h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.festival-calendar,
.photography-checklist,
.related-links {
    list-style: none;
}

.festival-calendar li,
.photography-checklist li,
.related-links li {
    color: #6b7280;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.festival-calendar li:last-child,
.photography-checklist li:last-child,
.related-links li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-links a {
    color: #6366f1;
    text-decoration: none;
}

.related-links a:hover {
    color: #4f46e5;
}

.settings-guide {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #6366f1;
}

.settings-guide p {
    margin-bottom: 0.5rem;
    color: #374151;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.share-btn {
    padding: 0.75rem 1rem;
    background-color: #6366f1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background-color: #4f46e5;
    color: #ffffff;
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.facebook:hover {
    background-color: #166fe5;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.twitter:hover {
    background-color: #1a91da;
}

.share-btn.linkedin {
    background-color: #0a66c2;
}

.share-btn.linkedin:hover {
    background-color: #0955a5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .advantages-content,
    .subscription-content,
    .story-content,
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .article-content .container {
        flex-direction: column;
    }
    
    .article-sidebar {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-options {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .newsletter-input {
        flex-direction: column;
    }
    
    .thank-you-actions .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hero {
        padding: 5rem 0 2rem;
    }
    
    .section-header,
    .about-section,
    .services,
    .advantages,
    .testimonials,
    .blog,
    .subscription {
        padding: 4rem 0;
    }
    
    .service-card,
    .testimonial-card {
        padding: 2rem;
    }
    
    .subscription-form {
        padding: 2rem;
    }
    
    .legal-body,
    .article-body {
        font-size: 1rem;
    }
    
    .cookie-table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Smooth animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

button:focus,
.btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .nav-toggle,
    .social-links,
    .share-buttons {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .article-content,
    .legal-content {
        padding: 0;
    }
}

.nav-menu.active{
    position: absolute;
        top: 80px;
        left: 0px;
        width: 100%;
    
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 32px;
        background-color: #fff;
        z-index: 1000;
}
