/* Base Styles & Reset */
:root {
    --primary-color: #00aaff;
    --primary-dark: #0088cc;
    --secondary-color: #2d3748;
    --accent-color: #ff6b35;
    --light-gray: #f8f9fa;
    --mid-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-color: #212529;
    --text-light: #6c757d;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1140px;
    --header-height: 80px;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

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

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

.btn-secondary:hover {
    background-color: #3a4656;
    color: var(--white);
}

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

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

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 18px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo img {
    height: 50px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    margin-right: 20px;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav li a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

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

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

.main-nav li a.active {
    color: var(--primary-color);
}

.nav-controls {
    display: flex;
    align-items: center;
}

.nav-controls button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 15px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.nav-controls button:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

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

.feature-card {
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    background-color: var(--white);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

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

/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    font-weight: 700;
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.service-card .btn {
    margin: 0 20px 20px;
}

.services-cta {
    margin-top: 50px;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.testimonial {
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    background-color: var(--light-gray);
    margin: 0 auto;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 50px;
    color: var(--primary-color);
    position: absolute;
    opacity: 0.3;
}

.testimonial-content p:before {
    left: -15px;
    top: -20px;
}

.testimonial-content p:after {
    right: -15px;
    bottom: -40px;
}

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

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

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-controls button {
    background-color: var(--white);
    border: 1px solid var(--mid-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Latest Blog Section */
.latest-blog {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-meta {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

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

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    margin-top: 50px;
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 70px 0 20px;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.company-info {
    font-size: 14px;
    opacity: 0.7;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

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

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons 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(--white);
    transition: var(--transition);
}

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

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--white);
    opacity: 0.7;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: 1px solid var(--white);
    cursor: pointer;
}

.cookie-more {
    color: var(--primary-color);
    text-decoration: underline;
    margin-left: 10px;
}

/* Page Banner */
.page-banner {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.8;
}

/* Services Page */
.service-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.service-overview .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.overview-content {
    flex: 1;
}

.overview-image {
    flex: 1;
}

.overview-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.overview-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.overview-content p {
    margin-bottom: 20px;
}

.overview-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-text {
    color: var(--text-light);
}

.services-list {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 50px;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    width: 100%;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-details p {
    margin-bottom: 15px;
}

.service-details ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-details ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-details ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.upgrade-process {
    padding: 80px 0;
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
}

.service-faq {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.faq-items {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: var(--white);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(0, 170, 255, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-toggle {
    font-size: 16px;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-answer p {
    color: var(--text-light);
}

/* Blog Page */
.blog-content {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-content .container {
    display: flex;
    gap: 40px;
}

.blog-main {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
}

.blog-post-card {
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

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

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

.blog-post-content {
    padding: 25px;
}

.blog-post-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.blog-post-meta {
    display: flex;
    gap: 15px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
}

.blog-post-meta span i {
    margin-right: 5px;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mid-gray);
    font-weight: 700;
}

.categories ul li {
    margin-bottom: 12px;
}

.categories ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    transition: var(--transition);
}

.categories ul li a:hover {
    color: var(--primary-color);
}

.categories ul li a i {
    margin-right: 8px;
    color: var(--primary-color);
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.popular-post-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.popular-post-content h4 a {
    color: var(--text-color);
    transition: var(--transition);
}

.popular-post-content h4 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 14px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid var(--mid-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Blog Post Page */
.blog-post-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
}

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

.post-header-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.post-excerpt {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.7;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta span i {
    margin-right: 8px;
}

.blog-post-content {
    padding: 80px 0;
}

.post-content-columns {
    display: flex;
    gap: 40px;
}

.post-main-content {
    flex: 3;
}

.post-sidebar {
    flex: 1;
}

.post-featured-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.post-content {
    line-height: 1.8;
}

.post-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 700;
}

.post-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 600;
}

.post-content h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 20px;
}

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

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

.post-content strong {
    font-weight: 600;
}

.info-box, 
.tip-box,
.warning-box {
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.info-box {
    background-color: rgba(0, 170, 255, 0.1);
    border-left: 4px solid var(--primary-color);
}

.tip-box {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid var(--success);
}

.warning-box {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--warning);
}

.info-box h4, 
.tip-box h4,
.warning-box h4 {
    display: flex;
    align-items: center;
    margin-top: 0;
    font-weight: 700;
}

.info-box h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.tip-box h4 i {
    color: var(--success);
    margin-right: 10px;
}

.warning-box h4 i {
    color: var(--warning);
    margin-right: 10px;
}

.chart-container {
    margin: 30px 0;
}

.chart-container h4 {
    text-align: center;
    margin-bottom: 15px;
}

.chart-description {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.chart-bar {
    background-color: var(--primary-color);
    height: 30px;
    border-radius: 4px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    margin-bottom: 10px;
}

.chart-bar-horizontal {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.bar-label {
    flex: 0 0 150px;
    font-weight: 600;
}

.bar-values {
    flex: 1;
    display: flex;
    align-items: center;
    height: 30px;
    position: relative;
}

.bar-value-hdd {
    background-color: #f76707;
    height: 30px;
    border-radius: 4px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    position: absolute;
    left: 0;
}

.bar-value-sata {
    background-color: #1971c2;
    height: 30px;
    border-radius: 4px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    position: absolute;
    left: 0;
}

.bar-value-nvme {
    background-color: #2b8a3e;
    height: 30px;
    border-radius: 4px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    position: absolute;
    left: 0;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.legend-hdd, 
.legend-sata, 
.legend-nvme {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.legend-hdd:before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: #f76707;
    display: inline-block;
    margin-right: 5px;
    border-radius: 2px;
}

.legend-sata:before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: #1971c2;
    display: inline-block;
    margin-right: 5px;
    border-radius: 2px;
}

.legend-nvme:before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: #2b8a3e;
    display: inline-block;
    margin-right: 5px;
    border-radius: 2px;
}

.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table h4 {
    margin-bottom: 15px;
}

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

.comparison-table th {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 15px;
    text-align: left;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--mid-gray);
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.table-caption {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.conclusion {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    align-items: center;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.post-share {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.post-share span {
    margin-right: 15px;
    font-weight: 600;
}

.post-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.post-share a.facebook {
    background-color: #3b5998;
    color: var(--white);
}

.post-share a.twitter {
    background-color: #1da1f2;
    color: var(--white);
}

.post-share a.linkedin {
    background-color: #0077b5;
    color: var(--white);
}

.post-share a.pinterest {
    background-color: #bd081c;
    color: var(--white);
}

.post-share a:hover {
    transform: translateY(-3px);
}

.post-author-bio {
    display: flex;
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
}

.post-author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.author-details h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-light);
}

.author-details h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.author-social {
    margin-top: 15px;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--mid-gray);
    color: var(--text-color);
    margin-right: 10px;
    transition: var(--transition);
}

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

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.post-nav-prev,
.post-nav-next {
    max-width: 45%;
}

.post-nav-prev a,
.post-nav-next a {
    display: block;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.post-nav-prev a:hover,
.post-nav-next a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.nav-label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-light);
}

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

.post-nav-prev .nav-title {
    text-align: left;
}

.post-nav-next .nav-title {
    text-align: right;
}

.author-widget {
    text-align: center;
}

.author-widget img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.author-widget h3 {
    font-size: 20px;
    margin-bottom: 5px;
    border: none;
}

.author-widget p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-cta {
    text-align: center;
}

.service-cta h3 {
    text-align: center;
}

.service-cta p {
    margin-bottom: 20px;
}

.related-posts {
    margin-top: 60px;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.related-post {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.related-post h3 {
    padding: 15px 15px 10px;
    font-size: 18px;
    font-weight: 600;
}

.related-post h3 a {
    color: var(--text-color);
    transition: var(--transition);
}

.related-post h3 a:hover {
    color: var(--primary-color);
}

.related-post .post-meta {
    padding: 0 15px 15px;
    color: var(--text-light);
    justify-content: flex-start;
}

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

.about-story {
    background-color: var(--white);
}

.about-mission {
    background-color: var(--light-gray);
}

.about-story .container,
.about-mission .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content, 
.mission-content {
    flex: 1;
}

.about-image, 
.mission-image {
    flex: 1;
}

.about-image img, 
.mission-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    width: 100%;
}

.about-content h2, 
.mission-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p, 
.mission-content p {
    margin-bottom: 20px;
}

.mission-values {
    margin-top: 30px;
}

.value {
    display: flex;
    margin-bottom: 20px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 170, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.team {
    padding: 80px 0;
    background-color: var(--white);
}

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

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 280px;
}

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

.member-info {
    padding: 20px;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.member-title {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-bio {
    margin-bottom: 15px;
    color: var(--text-light);
}

.member-socials {
    display: flex;
    gap: 10px;
}

.member-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--text-color);
    transition: var(--transition);
}

.member-socials a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.certifications {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.certification-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.certification-logo {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 120px;
}

.certification-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-columns {
    display: flex;
    gap: 40px;
}

.contact-form-container {
    flex: 3;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.contact-info-container {
    flex: 2;
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--mid-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

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

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.business-hours {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.business-hours h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.business-hours h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--mid-gray);
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.business-hours ul li span {
    font-weight: 600;
}

.social-connect {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.social-connect h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-section {
    padding: 80px 0 0;
    background-color: var(--white);
}

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

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.thank-you-message {
    text-align: center;
    padding: 20px 0;
}

.thank-you-message i {
    font-size: 60px;
    color: var(--success);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.thank-you-message p {
    margin-bottom: 20px;
}

.close-btn {
    margin-top: 10px;
}

/* Policy Pages */
.policy-content {
    padding: 60px 0;
    background-color: var(--white);
}

.policy-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.policy-section {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.policy-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.policy-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 15px;
}

.policy-section ul, 
.policy-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

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

.policy-footer {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--mid-gray);
    font-style: italic;
    color: var(--text-light);
}

.contact-info-box {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.refund-steps {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.refund-steps h3 {
    margin-top: 0;
}

.refund-steps ol {
    counter-reset: item;
    padding-left: 0;
}

.refund-steps ol li {
    display: flex;
    counter-increment: item;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.refund-steps ol li:before {
    content: counter(item);
    background-color: var(--primary-color);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero .container,
    .about-story .container,
    .about-mission .container,
    .service-overview .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content,
    .about-content,
    .mission-content,
    .overview-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-stats,
    .overview-stats {
        justify-content: center;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-item:nth-child(even) {
        flex-direction: column;
    }
    
    .service-image {
        margin-bottom: 30px;
    }
    
    .value {
        text-align: left;
    }
    
    .post-content-columns,
    .contact-columns {
        flex-direction: column;
    }
    
    .post-sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        margin: 0;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav li {
        margin: 0;
    }
    
    .main-nav li a {
        display: block;
        padding: 15px 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .features-grid,
    .services-grid,
    .blog-preview-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin: 0 auto 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-nav-prev,
    .post-nav-next {
        max-width: 100%;
    }
    
    .blog-post-header h1 {
        font-size: 28px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .certification-logos {
        gap: 20px;
    }
    
    .certification-logo {
        width: 150px;
        height: 100px;
    }
}

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

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

/* Print Styles */
@media print {
    header, footer, .cta, .cookie-consent, .nav-controls, .hamburger {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    h1 {
        font-size: 18pt;
    }
    
    h2 {
        font-size: 16pt;
    }
    
    h3 {
        font-size: 14pt;
    }
    
    img {
        max-width: 100% !important;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .policy-content,
    .post-content {
        padding: 0;
    }
}
