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

html {
    scroll-behavior: smooth;
}

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;
}

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

h1 {
    font-size: 2.5rem;
    color: #1a365d;
}

h2 {
    font-size: 2rem;
    color: #2d3748;
}

h3 {
    font-size: 1.5rem;
    color: #2d3748;
}

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

a {
    color: #2b6cb0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a365d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2b6cb0;
    color: white;
}

.btn-primary:hover {
    background-color: #1a365d;
    color: white;
}

.btn-secondary {
    background-color: #4a5568;
    color: white;
}

.btn-secondary:hover {
    background-color: #2d3748;
    color: white;
}

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

.btn-outline:hover {
    background-color: #2b6cb0;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content p{
    color: white;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2b6cb0;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2b6cb0;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 80px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a365d;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4a5568;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 60px 0;
}

.page-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero-image img {
    width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #f7fafc;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #1a365d;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: #f7fafc;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.stats-image img {
    width: 100%;
    height: auto;
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #2b6cb0;
    margin-bottom: 10px;
}

.stat-item p {
    color: #4a5568;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: #1a365d;
    color: white;
}

.cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: #cbd5e0;
    margin-bottom: 30px;
}

.cta-image img {
    width: 100%;
    height: auto;
}

/* About Page Specific */
.about-mission {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.mission-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f7fafc;
    border-radius: 10px;
}

.mission-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.about-story {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.about-expertise {
    padding: 80px 0;
}

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

.expertise-card {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-values {
    padding: 80px 0;
    background-color: #f7fafc;
}

.values-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: bold;
}

/* Services Page */
.services-overview {
    padding: 80px 0;
}

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

.service-card {
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.service-card ul {
    text-align: left;
    margin-top: 20px;
}

.services-details {
    padding: 80px 0;
    background-color: #f7fafc;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail:nth-child(even) .service-detail-content {
    order: 2;
}

.service-detail:nth-child(even) .service-detail-image {
    order: 1;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    color: #2b6cb0;
    margin-bottom: 10px;
}

.services-process {
    padding: 80px 0;
}

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

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2b6cb0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.services-cta {
    padding: 80px 0;
    background-color: #1a365d;
    color: white;
    text-align: center;
}

.services-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.services-cta p {
    color: #cbd5e0;
    margin-bottom: 30px;
}

/* Testimonials Page */
.testimonials-stats {
    padding: 80px 0;
}

.testimonials-grid {
    padding: 80px 0;
    background-color: #f7fafc;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: #f6ad55;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.testimonial-author strong {
    color: #1a365d;
}

.testimonial-author span {
    color: #4a5568;
    font-size: 0.9rem;
}

.testimonial-image img {
    width: 100%;
    height: auto;
}

.testimonials-form {
    padding: 80px 0;
}

.opinion-form {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 40px;
}

.testimonials-cta {
    padding: 80px 0;
    background-color: #1a365d;
    color: white;
}

.testimonials-cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonials-cta h2 {
    color: white;
}

.testimonials-cta p {
    color: #cbd5e0;
}

/* Blog Page */
.blog-posts {
    padding: 80px 0;
}

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

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-date {
    color: #4a5568;
    font-size: 0.9rem;
}

.blog-category {
    color: #2b6cb0;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-content h3 {
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: #1a365d;
}

.blog-content h3 a:hover {
    color: #2b6cb0;
}

.read-more {
    color: #2b6cb0;
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
}

.blog-categories {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.category-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.blog-newsletter {
    padding: 80px 0;
    background-color: #1a365d;
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content h2 {
    color: white;
}

.newsletter-content p {
    color: #cbd5e0;
}

.newsletter-form {
    margin-top: 30px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.checkbox-label input {
    width: auto;
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
}

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

.contact-card {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
}

.contact-team {
    padding: 80px 0;
}

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

.team-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.contact-faq {
    padding: 80px 0;
    background-color: #f7fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: #1a365d;
}

/* Blog Article Page */
.blog-article {
    padding: 80px 0;
}

.article-header {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-date,
.article-category,
.article-author {
    color: #4a5568;
    font-size: 0.9rem;
}

.article-category {
    color: #2b6cb0;
    font-weight: 500;
}

.article-lead {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.article-image {
    margin-bottom: 30px;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.article-content section {
    margin-bottom: 40px;
}

.article-content h2 {
    margin-top: 60px;
    margin-bottom: 30px;
    color: #1a365d;
}

.article-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3748;
}

.article-content ul,
.article-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.company-analysis {
    margin-top: 40px;
}

.company-section {
    margin-bottom: 50px;
}

.analysis-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

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

.trend-item {
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.trend-item h4 {
    color: #2b6cb0;
    margin-bottom: 10px;
}

.outlook-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.recommendations {
    margin-top: 30px;
}

.recommendation-item {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
}

.recommendation-item.positive {
    background-color: #f0fff4;
    border-left-color: #38a169;
}

.recommendation-item.neutral {
    background-color: #fffbf0;
    border-left-color: #d69e2e;
}

.recommendation-item h4 {
    margin-bottom: 10px;
}

.article-footer {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.article-tags {
    margin-bottom: 30px;
}

.article-tags span {
    font-weight: 500;
    color: #2d3748;
    margin-right: 10px;
}

.tag {
    display: inline-block;
    background-color: #e2e8f0;
    color: #4a5568;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

.tag:hover {
    background-color: #2b6cb0;
    color: white;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    padding: 8px 16px;
    background-color: #2b6cb0;
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
}

.share-btn:hover {
    background-color: #1a365d;
    color: white;
}

.related-articles {
    padding: 80px 0;
    background-color: #f7fafc;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-card {
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.related-card img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.related-content h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.related-content h3 a {
    color: #1a365d;
}

.related-content h3 a:hover {
    color: #2b6cb0;
}

.related-content p {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    text-align: center;
    margin-bottom: 10px;
}

.last-updated {
    text-align: center;
    color: #4a5568;
    margin-bottom: 60px;
}

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

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    margin-bottom: 30px;
    color: #1a365d;
}

.legal-section h3 {
    margin-bottom: 20px;
    color: #2d3748;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

.contact-box {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

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

.purpose-item {
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.purpose-item h4 {
    color: #2b6cb0;
    margin-bottom: 10px;
}

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

.right-item {
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.right-item h4 {
    color: #2b6cb0;
    margin-bottom: 10px;
}

.cookies-usage {
    margin-top: 30px;
}

.usage-category {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.usage-category h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.cookies-table {
    overflow-x: auto;
    margin-top: 20px;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.third-party-cookies {
    margin-top: 30px;
}

.provider {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.provider h4 {
    color: #2b6cb0;
    margin-bottom: 10px;
}

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

.consequence-item {
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.consequence-item h4 {
    color: #2b6cb0;
    margin-bottom: 10px;
}

/* Thanks Page */
.thanks-page {
    padding: 80px 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon img {
    width: 100px;
    height: 100px;
}

.thanks-page h1 {
    margin-bottom: 20px;
    color: #2b6cb0;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.thanks-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.detail-item {
    text-align: left;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 10px;
}

.detail-item h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

.thanks-actions {
    padding: 80px 0;
    background-color: #f7fafc;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.action-card {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.action-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.action-card h3 {
    margin-bottom: 15px;
    color: #1a365d;
}

.action-card p {
    margin-bottom: 25px;
}

.thanks-contact {
    padding: 80px 0;
}

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

.contact-option {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-option img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.thanks-newsletter {
    padding: 80px 0;
    background-color: #1a365d;
    color: white;
}

.thanks-newsletter .newsletter-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.thanks-newsletter h2 {
    color: white;
}

.thanks-newsletter p {
    color: #cbd5e0;
}

/* Footer */
footer {
    background-color: #1a365d;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
    color: white;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

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

    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail:nth-child(even) .service-detail-content {
        order: 1;
    }

    .service-detail:nth-child(even) .service-detail-image {
        order: 2;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-cta .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .thanks-newsletter .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .analysis-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .outlook-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

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

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .related-card {
        flex-direction: column;
        text-align: center;
    }

    .related-card img {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
}

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

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

    .features h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

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

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .btn,
    .share-buttons,
    .newsletter-form,
    .hamburger {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

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

    .hero,
    .page-hero {
        background: none;
        padding: 20px 0;
    }

    .hero-content,
    .page-hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-content {
        max-width: none;
    }

    .legal-content {
        max-width: none;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .blog-card,
    .testimonial-card,
    .feature-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
