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

:root {
    --primary-color: 47 86 162; /* #2F56A2 */
    --secondary-color: 69 123 157; /* #457B9D */
    --accent-color: 240 249 255; /* #F0F9FF */
    --text-dark: 30 41 59; /* #1E293B */
    --text-light: 71 85 105; /* #475569 */
    --text-muted: 148 163 184; /* #94A3B8 */
    --white: 255 255 255; /* #FFFFFF */
    --gray-50: 248 250 252; /* #F8FAFC */
    --gray-100: 241 245 249; /* #F1F5F9 */
    --gray-200: 226 232 240; /* #E2E8F0 */
    --gray-800: 30 41 59; /* #1E293B */
    --success: 34 197 94; /* #22C55E */
    --error: 239 68 68; /* #EF4444 */
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: rgb(var(--text-dark));
    background-color: rgb(var(--white));
}

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

h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: 1rem;
    color: rgb(var(--text-light));
}

a {
    color: rgb(var(--primary-color));
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: rgb(var(--secondary-color));
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-base);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: rgb(var(--secondary-color));
    color: rgb(var(--white));
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.btn-outline {
    background-color: transparent;
    color: rgb(var(--text-dark));
    border: 2px solid rgb(var(--gray-200));
}

.btn-outline:hover {
    background-color: rgb(var(--gray-50));
    border-color: rgb(var(--primary-color));
    color: rgb(var(--primary-color));
}

.btn-text {
    background-color: transparent;
    color: rgb(var(--text-light));
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: rgb(var(--primary-color));
}

/* Header */
.header {
    background-color: rgb(var(--white));
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

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

.logo {
    height: 2.5rem;
    width: auto;
}

.brand-text {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: rgb(var(--primary-color));
}

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

.nav-link {
    color: rgb(var(--text-dark));
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: rgb(var(--primary-color));
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(var(--primary-color));
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 1.5rem;
    height: 2px;
    background-color: rgb(var(--text-dark));
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgb(var(--accent-color)) 0%, rgb(var(--white)) 100%);
    padding: 8rem 0 4rem;
    margin-top: 4rem;
}

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

.hero-text {
    flex: 1;
}

.hero h1 {
    color: rgb(var(--text-dark));
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: rgb(var(--text-light));
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-banner {
    max-width: 100%;
    height: auto;
}

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

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

.section-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

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

.section-header p {
    font-size: var(--font-size-lg);
    color: rgb(var(--text-light));
    max-width: 600px;
    margin: 0 auto;
}

/* About Preview Section */
.about-preview {
    background-color: rgb(var(--gray-50));
}

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

.about-text {
    flex: 2;
}

.about-text h3 {
    color: rgb(var(--text-dark));
    margin-bottom: 1rem;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: rgb(var(--white));
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

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

.stat-label {
    color: rgb(var(--text-light));
    font-weight: 500;
}

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

.service-card {
    background-color: rgb(var(--white));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
}

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

/* Benefits Section */
.benefits {
    background-color: rgb(var(--gray-50));
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgb(var(--white));
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    background-color: rgb(var(--success));
    color: rgb(var(--white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.benefit-item h3 {
    color: rgb(var(--text-dark));
    margin-bottom: 0.5rem;
    font-size: var(--font-size-lg);
}

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

.blog-card {
    background-color: rgb(var(--white));
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.blog-date {
    color: rgb(var(--text-muted));
    font-size: var(--font-size-sm);
}

.blog-category {
    background-color: rgb(var(--accent-color));
    color: rgb(var(--primary-color));
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

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

.blog-card h3 a {
    color: rgb(var(--text-dark));
}

.blog-card h3 a:hover {
    color: rgb(var(--primary-color));
}

.read-more {
    color: rgb(var(--primary-color));
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: rgb(var(--secondary-color));
}

/* Subscription Section */
.subscription {
    background: linear-gradient(135deg, rgb(var(--primary-color)) 0%, rgb(var(--secondary-color)) 100%);
    color: rgb(var(--white));
}

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

.subscription-text {
    flex: 1;
}

.subscription h2 {
    color: rgb(var(--white));
    margin-bottom: 1rem;
}

.subscription p {
    color: rgba(var(--white), 0.9);
    font-size: var(--font-size-lg);
}

.subscription-form {
    flex: 1;
}

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

.subscription-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    background-color: rgb(var(--white));
    color: rgb(var(--text-dark));
}

.subscription-form input::placeholder {
    color: rgb(var(--text-muted));
}

.subscription-form .btn {
    min-width: 150px;
    background-color: rgb(var(--white));
    color: rgb(var(--primary-color));
}

.subscription-form .btn:hover {
    background-color: rgb(var(--gray-100));
}

/* Contact Preview Section */
.contact-preview {
    background-color: rgb(var(--gray-50));
}

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

.contact-info {
    flex: 2;
}

.contact-info h2 {
    color: rgb(var(--text-dark));
    margin-bottom: 1rem;
}

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

.contact-item {
    margin-bottom: 0.75rem;
    color: rgb(var(--text-light));
}

.contact-hours {
    flex: 1;
    background-color: rgb(var(--white));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-hours h3 {
    color: rgb(var(--text-dark));
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgb(var(--gray-200));
}

.hours-item:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background-color: rgb(var(--gray-800));
    color: rgb(var(--white));
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: rgb(var(--white));
    margin-bottom: 1rem;
}

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

.footer-logo {
    height: 2rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: rgba(var(--white), 0.8);
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: rgba(var(--white), 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgb(var(--white));
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(var(--white), 0.1);
    border-radius: 50%;
    color: rgba(var(--white), 0.8);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--white), 0.2);
    color: rgba(var(--white), 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--white));
    border-top: 1px solid rgb(var(--gray-200));
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.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;
    color: rgb(var(--text-light));
}

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

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

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: rgb(var(--white));
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgb(var(--gray-200));
}

.modal-header h2 {
    margin: 0;
    color: rgb(var(--text-dark));
}

.close {
    font-size: var(--font-size-2xl);
    cursor: pointer;
    color: rgb(var(--text-muted));
}

.close:hover {
    color: rgb(var(--text-dark));
}

.modal-body {
    padding: 1.5rem;
}

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

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.cookie-toggle input[type="checkbox"] {
    position: relative;
    width: 3rem;
    height: 1.5rem;
    appearance: none;
    background-color: rgb(var(--gray-200));
    border-radius: 1rem;
    transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
    background-color: rgb(var(--primary-color));
}

.cookie-toggle input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 1.25rem;
    height: 1.25rem;
    background-color: rgb(var(--white));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
    transform: translateX(1.5rem);
}

.cookie-label {
    font-weight: 500;
    color: rgb(var(--text-dark));
}

.cookie-category p {
    color: rgb(var(--text-light));
    font-size: var(--font-size-sm);
    margin: 0;
    margin-left: 4rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgb(var(--gray-200));
    text-align: right;
}

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 0 3rem;
        margin-top: 4rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    h1 {
        font-size: var(--font-size-3xl);
    }

    h2 {
        font-size: var(--font-size-2xl);
    }

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

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .subscription-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    .subscription-form input {
        min-width: auto;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

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

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

    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    h1 {
        font-size: var(--font-size-2xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgb(var(--text-dark));
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgb(var(--gray-200));
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgb(var(--primary-color));
    box-shadow: 0 0 0 3px rgba(var(--primary-color), 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: rgb(var(--error));
    font-size: var(--font-size-sm);
    margin-top: 0.25rem;
}

.form-success {
    color: rgb(var(--success));
    font-size: var(--font-size-sm);
    margin-top: 0.25rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}
.article-content{
    padding-top: 120px;
    padding-bottom: 80px;
}