/* Base Styles */
:root {
    --primary-color: #5d4af7;
    --primary-dark: #4935e0;
    --secondary-color: #ff6b6b;
    --tertiary-color: #38b6ff;
    --accent-color: #ffd166;
    --text-color: #333333;
    --text-light: #777777;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --text-dark: #f0f0f0;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-code: 'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace;
}

[data-theme="dark"] {
    --primary-color: #7b68ee;
    --primary-dark: #6a5acd;
    --secondary-color: #ff7f7f;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --bg-color: #121212;
    --bg-light: #1e1e1e;
    --border-color: #333333;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, .btn {
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    outline: none;
}

input, select, textarea {
    font-family: var(--font-main);
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

/* Welcome Banner */
.welcome-banner {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 0.5rem 0;
    font-weight: 500;
}

.welcome-banner p {
    margin-bottom: 0;
}

/* Header */
header {
    background-color: var(--bg-color);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 1.2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.theme-toggle {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 30px;
    padding: 0.3rem;
    position: relative;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.theme-toggle span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    z-index: 1;
}

.theme-toggle .slider {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

[data-theme="dark"] .theme-toggle .slider {
    left: 33px;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    transform: scale(1.05);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1);
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        order: -1;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

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

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.tertiary-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.tertiary-btn:hover {
    background-color: var(--bg-light);
    border-color: var(--text-color);
}

.premium-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    color: white;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-weight: 700;
}

.premium-btn:hover {
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

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

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

.feature-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin-bottom: 1.5rem;
}

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

.feature-card p {
    color: var(--text-light);
}

/* Latest Posts Section */
.latest-posts {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

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

.post-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.post-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 0.3rem;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 0.6rem;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

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

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

.testimonial {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: var(--accent-color);
    color: var(--text-color);
}

.newsletter-form button:hover {
    background-color: #e6bc5c;
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius-sm);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius-sm);
    }
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    padding: 5rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-about .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    transition: var(--transition);
}

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

.footer-links h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.footer-contact svg {
    margin-right: 0.8rem;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-content {
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-consent a {
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Blog Page Styles */
.page-header {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.blog-container {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.blog-filters {
    position: sticky;
    top: 100px;
}

.blog-filters h3 {
    margin-bottom: 1.2rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    color: var(--primary-color);
    transform: translateX(5px);
}

.search-box {
    margin-top: 2rem;
}

.search-box form {
    display: flex;
    align-items: center;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.search-box button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-light);
}

.blog-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.blog-post {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-post .post-image {
    height: 100%;
}

.blog-post .post-content {
    padding: 2rem 2rem 2rem 0;
}

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

.blog-post h2 {
    margin-bottom: 1rem;
}

.blog-post h2 a {
    color: var(--text-color);
}

.blog-post h2 a:hover {
    color: var(--primary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    transition: var(--transition);
}

.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination a.next {
    width: auto;
    padding: 0 15px;
    border-radius: var(--border-radius-sm);
}

.pagination a.next svg {
    margin-left: 5px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filters {
        position: static;
        margin-bottom: 3rem;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .blog-post .post-image {
        height: 250px;
    }
    
    .blog-post .post-content {
        padding: 2rem;
    }
}

/* About Page */
.about-story {
    padding: 5rem 0;
}

.about-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.mission-content {
    text-align: center;
    margin-bottom: 3rem;
}

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

.mission-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin-bottom: 1.5rem;
}

.team {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.team-member {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.5rem 0 0.3rem;
}

.team-member p {
    padding: 0 1.5rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member .social-links {
    justify-content: center;
    margin: 1.5rem 0;
}

.values {
    padding: 5rem 0;
}

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

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

.value-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin-bottom: 1.5rem;
}

.achievements {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
}

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

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

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.join-team {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.join-content h2 {
    margin-bottom: 1.5rem;
}

.join-content p {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .about-story .container {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        order: -1;
    }
}

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

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

.services-intro h2 {
    margin-bottom: 1.5rem;
}

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

.service-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1.2rem;
}

.service-card ul {
    margin-bottom: 2rem;
}

.service-card li {
    margin-bottom: 0.8rem;
}

.service-pricing {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.premium-services {
    padding: 5rem 0;
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

.premium-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-heading h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.premium-service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.premium-card {
    background: linear-gradient(to right, var(--bg-light), var(--bg-color));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.premium-content {
    padding: 2.5rem;
    color: var(--text-color);
}

.premium-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.premium-action {
    background-color: var(--primary-color);
    padding: 2rem;
    text-align: center;
}

.premium-price {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-process {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 20px;
    width: 2px;
    height: calc(100% + 2.5rem);
    background-color: var(--primary-color);
    z-index: 0;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    margin-right: 1.5rem;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.8rem;
}

.services-testimonials {
    background-color: var(--bg-color);
}

.services-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

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

.faq {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

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

.faq-item {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .premium-service-cards {
        grid-template-columns: 1fr;
    }
}

/* Contact Page */
.contact-grid {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

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

.info-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin-right: 1.2rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.social-connect h3 {
    margin-bottom: 1.2rem;
}

.contact-form-container {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-color);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(93, 74, 247, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.map-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-faq {
    background-color: var(--bg-color);
}

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

.modal-content {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thank-you-message h2 {
    margin-bottom: 1rem;
}

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

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .info-items {
        grid-template-columns: 1fr;
    }
}

/* Blog Post Page */
.blog-post-single {
    padding: 5rem 0;
}

.post-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.post-header h1 {
    margin-bottom: 1.5rem;
}

.post-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.post-share span {
    font-weight: 500;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-color);
    transition: var(--transition);
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.post-table-of-contents {
    background-color: var(--bg-light);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2.5rem;
}

.post-table-of-contents h3 {
    margin-bottom: 1rem;
}

.post-table-of-contents ul {
    list-style: none;
    padding: 0;
}

.post-table-of-contents li {
    margin-bottom: 0.5rem;
}

.post-table-of-contents a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.post-table-of-contents a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.post-content section {
    padding: 0;
    margin-bottom: 3rem;
}

.post-content h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.skin-item {
    margin-bottom: 2.5rem;
}

.skin-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.skin-image {
    height: 100%;
}

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

.skin-info {
    padding: 1.5rem;
}

.skin-info p {
    margin-bottom: 0.8rem;
}

.author-box {
    display: flex;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 2rem;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 0.8rem;
}

.author-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.8rem;
}

.author-social a {
    color: var(--text-light);
}

.author-social a:hover {
    color: var(--primary-color);
}

.post-navigation {
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.post-nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous, .nav-next {
    max-width: 40%;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
}

.related-posts {
    margin-top: 4rem;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-post {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post h3 {
    padding: 1rem 1.5rem 0;
    font-size: 1.1rem;
}

.related-post .post-meta {
    padding: 0 1.5rem 1.5rem;
}

@media (max-width: 768px) {
    .skin-details {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .post-nav-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-previous, .nav-next {
        max-width: 100%;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Styles */
[data-theme="dark"] {
    --text-color: #f0f0f0;
    --text-light: #b0b0b0;
    --bg-color: #121212;
    --bg-light: #1e1e1e;
    --border-color: #333333;
    --bg-dark: #0a0a0a;
}

[data-theme="dark"] .logo img,
[data-theme="dark"] .footer-logo {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .testimonial,
[data-theme="dark"] .post-card,
[data-theme="dark"] .mission-item,
[data-theme="dark"] .value-item,
[data-theme="dark"] .service-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .contact-form-container,
[data-theme="dark"] .post-table-of-contents,
[data-theme="dark"] .skin-details,
[data-theme="dark"] .author-box,
[data-theme="dark"] .related-post {
    background-color: var(--bg-dark);
}

[data-theme="dark"] .premium-card {
    background: linear-gradient(to right, #0d0d0d, #181818);
}

[data-theme="dark"] .cookie-consent {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .theme-toggle {
    background-color: var(--bg-dark);
}

[data-theme="dark"] .hero,
[data-theme="dark"] .latest-posts,
[data-theme="dark"] .page-header,
[data-theme="dark"] .team,
[data-theme="dark"] .join-team,
[data-theme="dark"] .service-process,
[data-theme="dark"] .faq,
[data-theme="dark"] .map-section {
    background-color: var(--bg-dark);
}

/* Additional Responsive Adjustments */
@media (max-width: 576px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 0.8rem;
    }
}

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

.hero, .features, .latest-posts, .testimonials {
    animation: fadeIn 0.8s ease-out;
}

.service-card, .post-card, .feature-card {
    animation: fadeIn 0.6s ease-out;
}
