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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

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

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

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

h4 {
    font-size: 1.25rem;
    color: #4a5568;
}

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

a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5aa0;
}

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

.btn-primary {
    background-color: #3182ce;
    color: white;
}

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

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

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

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

.btn-outline:hover {
    background-color: #3182ce;
    color: white;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

.nav-brand a {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

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

.nav-menu li a {
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #3182ce;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3182ce;
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

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

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

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

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

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Company Info Section */
.company-info {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
}

.info-card:hover::before {
    left: 100%;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
    margin-bottom: 1.5rem;
    color: #1a365d;
    font-size: 1.8rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(49, 130, 206, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(72, 187, 120, 0.05) 0%, transparent 50%);
}

.comparison .container {
    position: relative;
    z-index: 1;
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.comparison-table th {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}

.comparison-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #48bb78, #38a169);
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
    position: relative;
}

.comparison-table tbody tr:nth-child(even) {
    background: linear-gradient(145deg, #f7fafc 0%, #edf2f7 100%);
}

.comparison-table tbody tr:hover {
    background: linear-gradient(145deg, #e6fffa 0%, #b2f5ea 20%, #81e6d9 100%);
    transform: scale(1.01);
    box-shadow: 0 5px 20px rgba(72, 187, 120, 0.2);
}

.comparison-table tbody tr:hover td {
    color: #1a365d;
    font-weight: 600;
}

.comparison-table td strong {
    font-weight: 700;
    color: #1a365d;
    font-size: 1.1rem;
}

.comparison-note {
    font-style: italic;
    color: #4a5568;
    text-align: center;
    font-size: 1.05rem;
    padding: 1rem;
    background: rgba(113, 128, 150, 0.1);
    border-radius: 10px;
    border-left: 4px solid #3182ce;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="dot" cx="50%" cy="50%" r="1.5"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0"/></radialGradient></defs><circle cx="10" cy="10" r="1.5" fill="url(%23dot)"/><circle cx="30" cy="30" r="1.5" fill="url(%23dot)"/><circle cx="50" cy="10" r="1.5" fill="url(%23dot)"/><circle cx="70" cy="30" r="1.5" fill="url(%23dot)"/><circle cx="90" cy="10" r="1.5" fill="url(%23dot)"/><circle cx="10" cy="50" r="1.5" fill="url(%23dot)"/><circle cx="30" cy="70" r="1.5" fill="url(%23dot)"/><circle cx="50" cy="50" r="1.5" fill="url(%23dot)"/><circle cx="70" cy="70" r="1.5" fill="url(%23dot)"/><circle cx="90" cy="50" r="1.5" fill="url(%23dot)"/><circle cx="10" cy="90" r="1.5" fill="url(%23dot)"/><circle cx="30" cy="90" r="1.5" fill="url(%23dot)"/><circle cx="50" cy="90" r="1.5" fill="url(%23dot)"/><circle cx="70" cy="90" r="1.5" fill="url(%23dot)"/><circle cx="90" cy="90" r="1.5" fill="url(%23dot)"/></svg>') repeat;
}

.services .section-header h2 {
    color: white;
    font-size: 3rem;
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #48bb78, #f6ad55);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: #1a365d;
    font-size: 1.8rem;
    font-weight: 700;
}

.service-card > p {
    margin-bottom: 2rem;
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.service-card ul li {
    padding: 0.8rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(72, 187, 120, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover ul li::before {
    background: #48bb78;
    color: white;
    transform: scale(1.1);
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(72, 187, 120, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(56, 161, 105, 0.05) 0%, transparent 50%);
}

.reviews .container {
    position: relative;
    z-index: 1;
}

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

.review-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(72, 187, 120, 0.1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #48bb78, #38a169, #68d391);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 25px rgba(72, 187, 120, 0.15);
}

.review-rating {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.review-card p::before {
    content: '"';
    font-size: 4rem;
    color: rgba(72, 187, 120, 0.2);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
}

.review-author {
    text-align: center;
    border-top: 2px solid rgba(72, 187, 120, 0.1);
    padding-top: 1.5rem;
}

.review-author strong {
    display: block;
    color: #1a365d;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.review-author span {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

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

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-privacy a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* Contact Section */
.contact {
    background-color: #f7fafc;
}

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

.contact-info h3 {
    margin-bottom: 2rem;
    color: #1a365d;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: #1a365d;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #1a365d;
}

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

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

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

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

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

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

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

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a365d;
    color: white;
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    flex: 1;
}

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

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-modal.hidden {
    display: none;
}

.cookie-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-category span {
    font-weight: 600;
    color: #1a365d;
}

.cookie-category p {
    margin: 0.5rem 0 0 1.5rem;
    font-size: 0.9rem;
    color: #718096;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Thank You Page */
.thank-you {
    padding: 120px 0 80px;
    text-align: center;
}

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

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

.thank-you-icon svg {
    color: #48bb78;
}

.thank-you h1 {
    color: #1a365d;
    margin-bottom: 1rem;
}

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

.thank-you-details {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: left;
}

.thank-you-details h2 {
    margin-bottom: 1rem;
    text-align: center;
}

.thank-you-details ul {
    list-style: none;
    padding: 0;
}

.thank-you-details ul li {
    padding: 0.5rem 0;
    color: #4a5568;
}

.newsletter-frequency {
    background-color: #edf2f7;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.newsletter-frequency h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-share {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 10px;
}

.social-share h3 {
    margin-bottom: 0.5rem;
}

.social-share p {
    margin-bottom: 1rem;
    color: #718096;
}

/* Blog Styles */
.blog-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blogPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23blogPattern)"/></svg>');
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero-content h1 {
    color: white;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 700;
}

.blog-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-articles {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.blog-articles .container {
    display: block;
    max-width: 1000px;
}

.blog-single-column {
    max-width: 900px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    gap: 3rem;
}

.article-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #3182ce);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.article-card:hover::before {
    transform: scaleX(1);
}

.article-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
}

.article-card.featured .article-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.article-image {
    overflow: hidden;
    border-radius: 0;
}

.article-card.featured .article-image {
    border-radius: 20px 0 0 20px;
}

.article-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.95);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.article-content {
    padding: 3rem 2.5rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    align-items: center;
}

.article-category {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date,
.reading-time {
    color: #4a5568;
    font-weight: 500;
}

.article-content h2,
.article-content h3 {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-content h2 a,
.article-content h3 a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.article-content h2 a:hover,
.article-content h3 a:hover {
    color: #3182ce;
}

.article-content p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #2d3748;
    font-size: 1.05rem;
}

.read-more {
    color: #3182ce;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border: 2px solid #3182ce;
    border-radius: 25px;
    background: transparent;
}

.read-more:hover {
    background: #3182ce;
    color: white;
    transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sidebar-widget {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    margin-bottom: 2rem;
    color: #1a365d;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3182ce, #667eea);
    border-radius: 2px;
}

.category-list,
.popular-articles {
    list-style: none;
    padding: 0;
}

.category-list li,
.popular-articles li {
    margin-bottom: 1rem;
}

.category-list a,
.popular-articles a {
    display: block;
    padding: 1rem 1.5rem;
    color: #2d3748;
    text-decoration: none;
    border-radius: 10px;
    background: rgba(49, 130, 206, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-list a:hover,
.popular-articles a:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    transform: translateX(5px);
}

.category-list a span {
    float: right;
    font-size: 0.85rem;
    color: #718096;
    background: rgba(113, 128, 150, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
}

.category-list a:hover span {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.newsletter-widget h3 {
    color: white;
}

.newsletter-widget h3::after {
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2rem;
}

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

.sidebar-newsletter-form input {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
}

.sidebar-newsletter-form input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.sidebar-newsletter-form .btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.sidebar-newsletter-form .btn:hover {
    background: white;
    color: #667eea;
    border-color: white;
}

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

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #4a5568;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.category-list a:hover {
    color: #3182ce;
}

.category-list span {
    color: #718096;
    font-size: 0.9rem;
}

.popular-articles a {
    color: #4a5568;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.popular-articles a:hover {
    color: #3182ce;
}

.newsletter-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.newsletter-widget h3 {
    color: white;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
}

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

.sidebar-newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 4px;
}

/* Article Content Page */
.article-content {
    padding: 120px 0 60px;
}

.article-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #718096;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #3182ce;
}

.article-lead {
    font-size: 1.3rem;
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.article-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

/* Article-specific components */
.comparison-criteria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.criteria-item {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
}

.criteria-item h4 {
    margin-bottom: 0.5rem;
    color: #1a365d;
}

.supplier-comparison {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.supplier-card {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.supplier-card h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.supplier-rating {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #f6ad55;
}

.supplier-details {
    background-color: #f7fafc;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.supplier-details p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.supplier-card h4 {
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.recommendations {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.recommendation-card {
    background-color: #e6fffa;
    border: 1px solid #81e6d9;
    border-radius: 8px;
    padding: 1.5rem;
}

.recommendation-card h3 {
    color: #234e52;
    margin-bottom: 0.5rem;
}

.warning-box {
    background-color: #fed7d7;
    border: 1px solid #fc8181;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h4 {
    color: #742a2a;
    margin-bottom: 0.5rem;
}

.tip-box {
    background-color: #e6fffa;
    border-left: 4px solid #38b2ac;
    padding: 1.5rem;
    margin: 2rem 0;
}

.tip-box h4 {
    color: #234e52;
    margin-bottom: 0.5rem;
}

.article-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.article-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-tags,
.article-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag {
    background-color: #edf2f7;
    color: #4a5568;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
}

.tag:hover {
    background-color: #e2e8f0;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-buttons a {
    color: #3182ce;
    text-decoration: none;
    padding: 0.5rem;
}

.share-buttons a:hover {
    text-decoration: underline;
}

/* Related Articles */
.related-articles {
    background-color: #f7fafc;
    padding: 60px 0;
}

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

.related-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    color: inherit;
}

.related-card h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.related-card p {
    color: #718096;
    margin: 0;
}

/* Legal Content */
.legal-content {
    padding: 120px 0 60px;
}

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

.legal-header h1 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.last-updated {
    color: #718096;
    font-style: italic;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #1a365d;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h4 {
    color: #4a5568;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-box {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.company-info {
    background-color: #edf2f7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    min-width: 600px;
}

.table-responsive th,
.table-responsive td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
    font-size: 0.95rem;
    line-height: 1.5;
}

.table-responsive th {
    background: #f7fafc;
    color: #1a365d;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #3182ce;
}

.table-responsive tbody tr {
    transition: background-color 0.2s ease;
}

.table-responsive tbody tr:nth-child(even) {
    background: #f8fafc;
}

.table-responsive tbody tr:hover {
    background: #edf2f7;
}

.table-responsive tbody tr:hover td {
    color: #1a365d;
}

.table-responsive td {
    font-weight: 500;
}

.purpose-table,
.cookie-table,
.retention-table,
.pricing-table {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.purpose-table table,
.cookie-table table,
.retention-table table,
.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.purpose-table th,
.purpose-table td,
.cookie-table th,
.cookie-table td,
.retention-table th,
.retention-table td,
.pricing-table th,
.pricing-table td {
    border: 1px solid #e2e8f0;
    padding: 0.75rem;
    text-align: left;
}

.purpose-table th,
.cookie-table th,
.retention-table th,
.pricing-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookie-categories {
    margin: 2rem 0;
}

.cookie-category-detail {
    margin-bottom: 3rem;
}

.cookie-types,
.benefits-section {
    margin: 2rem 0;
}

.cookie-type,
.benefit-details {
    background-color: #f7fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-type h4,
.benefit-details h4 {
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.third-party-services,
.protection-mechanisms {
    margin: 2rem 0;
}

.service-detail,
.right-item {
    background-color: #f7fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail h4,
.right-item h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.rights-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.cookie-management-tool {
    text-align: center;
    margin: 2rem 0;
}

.browser-settings {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.browser-item,
.mobile-platform {
    background-color: #f7fafc;
    border-radius: 8px;
    padding: 1rem;
}

.browser-item h4,
.mobile-platform h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.browser-item p,
.mobile-platform p {
    font-family: monospace;
    background-color: #edf2f7;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.mobile-settings {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.retention-overview {
    background-color: #f7fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-articles .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-card.featured .article-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .info-grid,
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .info-card,
    .service-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 100px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 100px 0 40px;
    }
    
    .article-lead {
        font-size: 1.1rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cookie-modal,
    .footer,
    .social-links,
    .article-cta,
    .newsletter,
    .related-articles {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .legal-content,
    .article-content {
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .legal-section,
    .article-body > * {
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .article-card,
    .info-card,
    .service-card,
    .review-card {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a202c;
        --text-color: #e2e8f0;
        --card-bg: #2d3748;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .info-card,
    .service-card,
    .review-card,
    .article-card {
        background-color: var(--card-bg);
        color: var(--text-color);
    }
}
