/* CSS Variables */
:root {
    --primary-color: 210 79% 46%; /* #1E40AF */
    --secondary-color: 34 100% 50%; /* #FF8C00 */
    --accent-color: 142 71% 45%; /* #10B981 */
    --background: 210 11% 98%; /* #F5F7FA */
    --surface: 0 0% 100%; /* #FFFFFF */
    --text-primary: 210 11% 15%; /* #1F2937 */
    --text-secondary: 210 11% 40%; /* #6B7280 */
    --border: 210 11% 90%; /* #E5E7EB */
    --shadow: 210 11% 15% / 0.1; /* rgba(31, 41, 55, 0.1) */
    --gradient-primary: linear-gradient(135deg, hsl(210 79% 46%) 0%, hsl(34 100% 50%) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(142 71% 45%) 0%, hsl(210 79% 46%) 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
}

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

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

h1 { font-size: 3rem; }
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;
    color: hsl(var(--text-secondary));
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsl(var(--shadow));
}

.btn-secondary {
    background: transparent;
    color: hsl(var(--primary-color));
    border: 2px solid hsl(var(--primary-color));
}

.btn-secondary:hover {
    background: hsl(var(--primary-color));
    color: white;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: hsl(var(--surface));
    border-top: 3px solid hsl(var(--primary-color));
    padding: 20px;
    box-shadow: 0 -4px 20px hsl(var(--shadow));
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.cookie-text i {
    color: hsl(var(--secondary-color));
    font-size: 1.5rem;
}

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

.btn-cookie {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: hsl(var(--accent-color));
    color: white;
}

.btn-cookie.necessary {
    background: hsl(var(--text-secondary));
    color: white;
}

.btn-cookie.customize {
    background: transparent;
    border: 2px solid hsl(var(--primary-color));
    color: hsl(var(--primary-color));
}

.btn-cookie:hover {
    transform: translateY(-1px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: hsl(var(--surface));
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: hsl(var(--text-secondary));
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: hsl(var(--text-primary));
}

.cookie-options {
    margin: 20px 0;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
}

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

.cookie-option p {
    margin-top: 8px;
    margin-left: 28px;
    font-size: 0.9rem;
    color: hsl(var(--text-secondary));
}

/* Navigation */
.navbar {
    background: hsl(var(--surface));
    box-shadow: 0 2px 20px hsl(var(--shadow));
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(10px);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary-color));
}

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

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

.nav-link {
    text-decoration: none;
    color: hsl(var(--text-primary));
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--primary-color));
    background: hsl(var(--primary-color) / 0.1);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: hsl(var(--primary-color));
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: white;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
    flex: 1;
    max-width: 200px;
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--secondary-color));
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

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

.section-header h2 {
    color: hsl(var(--text-primary));
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Diagonal Section */
.diagonal-section {
    position: relative;
    background: hsl(var(--surface));
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--gradient-primary);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.diagonal-section .container {
    position: relative;
    z-index: 2;
}

.section-content {
    padding-top: 3rem;
}

/* Company Info */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: hsl(var(--surface));
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px hsl(var(--shadow));
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid hsl(var(--border));
}

.info-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.company-intro {
    background: var(--gradient-secondary);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.company-intro h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.company-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.service-card {
    background: hsl(var(--surface));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px hsl(var(--shadow));
    transition: all 0.3s ease;
    border: 1px solid hsl(var(--border));
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card.floating:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px hsl(var(--shadow));
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    color: hsl(var(--text-primary));
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: hsl(var(--text-secondary));
}

.service-card li i {
    color: hsl(var(--accent-color));
    font-size: 0.8rem;
}

/* Reviews Section */
.zigzag-bg {
    background: linear-gradient(45deg, hsl(var(--background)) 25%, transparent 25%),
                linear-gradient(-45deg, hsl(var(--background)) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, hsl(var(--background)) 75%),
                linear-gradient(-45deg, transparent 75%, hsl(var(--background)) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
}

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

.review-card {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px hsl(var(--shadow));
    border-left: 4px solid hsl(var(--secondary-color));
    transition: transform 0.3s ease;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-avatar i {
    color: white;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0;
    color: hsl(var(--text-primary));
}

.reviewer-details span {
    color: hsl(var(--text-secondary));
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: hsl(var(--secondary-color));
}

.review-card p {
    font-style: italic;
    line-height: 1.7;
    color: hsl(var(--text-secondary));
}

/* Newsletter Section */
.curved-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.curved-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: hsl(var(--background));
    border-radius: 50%;
    transform: scaleX(3);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: hsl(var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    background: hsl(34 100% 45%);
    transform: translateY(-2px);
}

.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.blog-card {
    background: hsl(var(--surface));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px hsl(var(--shadow));
    transition: all 0.3s ease;
    border: 1px solid hsl(var(--border));
    display: flex;
    gap: 1.5rem;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px hsl(var(--shadow));
}

.blog-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-icon i {
    color: white;
    font-size: 1.5rem;
}

.blog-content {
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.blog-date {
    color: hsl(var(--text-secondary));
}

.blog-category {
    background: hsl(var(--accent-color));
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

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

.blog-content h3 a {
    text-decoration: none;
    color: hsl(var(--text-primary));
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: hsl(var(--primary-color));
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: hsl(var(--primary-color));
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 8px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: hsl(var(--primary-color));
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    gap: 12px;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.header-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

/* Timeline Styles */
.timeline-overview {
    padding: 4rem 0;
    background: hsl(var(--background));
}

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

.stat-card {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px hsl(var(--shadow));
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-content h3 {
    font-size: 2rem;
    margin: 0;
    color: hsl(var(--primary-color));
}

.stat-content p {
    margin: 0;
    color: hsl(var(--text-secondary));
}

/* History Timeline */
.history-timeline {
    padding: 5rem 0;
    background: hsl(var(--surface));
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
}

.timeline-item.left .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 3rem;
}

.timeline-item.right .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 3rem;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: hsl(var(--primary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    z-index: 3;
    top: -15px;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: hsl(var(--surface));
    border: 4px solid hsl(var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-icon i {
    color: hsl(var(--primary-color));
    font-size: 1.2rem;
}

.timeline-card {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px hsl(var(--shadow));
    transition: transform 0.3s ease;
}

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

.timeline-card h3 {
    color: hsl(var(--text-primary));
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: hsl(var(--secondary-color));
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-achievements {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-achievements span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: hsl(var(--text-secondary));
}

.timeline-achievements i {
    color: hsl(var(--accent-color));
}

/* Key Milestones */
.milestones-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.milestone-card {
    background: hsl(var(--surface));
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px hsl(var(--shadow));
    text-align: center;
    transition: transform 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-8px);
}

.milestone-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.milestone-icon i {
    color: white;
    font-size: 2rem;
}

.milestone-number {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(var(--primary-color));
    margin-bottom: 0.5rem;
}

.milestone-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(var(--text-primary));
    margin-bottom: 1rem;
}

.milestone-card p {
    line-height: 1.6;
}

/* Footer */
.footer {
    background: hsl(var(--text-primary));
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    color: white;
    margin: 0;
}

.footer-section h4 {
    color: hsl(var(--secondary-color));
    margin-bottom: 1.5rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: hsl(var(--secondary-color));
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: hsl(var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: hsl(var(--secondary-color));
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item i {
    color: hsl(var(--secondary-color));
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: hsl(var(--secondary-color));
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: hsl(var(--surface));
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px hsl(var(--shadow));
    }

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

    .nav-toggle {
        display: block;
    }

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

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

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

    .stat-item {
        padding: 1rem;
    }

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

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

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

    .newsletter-form input {
        min-width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
}

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

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

    .hero-stats {
        grid-template-columns: 1fr;
    }

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

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

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

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: hsl(var(--background));
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--primary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(210 79% 40%);
}
