/* 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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E5BFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2E5BFF;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #00C9FF;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 201, 255, 0.3);
}

.cta-button:hover {
    background: #00B4E6;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 201, 255, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

.services {
    background: #F8FAFF;
}

.services h2, .about h2, .features h2, .reviews h2, .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.service-card, .feature-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover, .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card i, .feature-item i {
    font-size: 3rem;
    color: #2E5BFF;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3, .feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat i {
    font-size: 2rem;
    color: #00C9FF;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2E5BFF;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.about-visual svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Features Section */
.features {
    background: #F8FAFF;
}

/* Reviews Section */
.reviews {
    background: white;
}

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

.review-card {
    background: #F8FAFF;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border-left: 4px solid #00C9FF;
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars i {
    color: #FFD700;
    margin-right: 0.2rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.reviewer strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.reviewer span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: #F8FAFF;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2E5BFF;
    margin-top: 0.2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item a {
    color: #2E5BFF;
    text-decoration: none;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E8F0FE;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E5BFF;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #2E5BFF;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #1E4BFF;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: #00C9FF;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4 {
    color: #ccc;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #00C9FF;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #00C9FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #aaa;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

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

.cookie-content h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-buttons button:first-child {
    background: #00C9FF;
    color: white;
}

.cookie-buttons button:nth-child(2) {
    background: #666;
    color: white;
}

.cookie-buttons button:last-child {
    background: transparent;
    color: white;
    border: 1px solid #666;
}

.cookie-buttons button:hover {
    opacity: 0.8;
}

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

.cookie-modal.show {
    display: flex;
}

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

.cookie-option {
    margin: 1rem 0;
}

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

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

.cookie-modal-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-modal-buttons button:first-child {
    background: #2E5BFF;
    color: white;
}

.cookie-modal-buttons button:last-child {
    background: #ccc;
    color: #333;
}

/* Thank You Page */
.thank-you {
    padding: 120px 0 80px;
    background: #F8FAFF;
    min-height: 80vh;
}

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

.thank-you-icon i {
    font-size: 5rem;
    color: #00C9FF;
    margin-bottom: 2rem;
}

.thank-you h1 {
    font-size: 3rem;
    color: #2E5BFF;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.form-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    text-align: left;
}

.form-summary h3 {
    color: #2E5BFF;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-details p {
    margin-bottom: 0.5rem;
    color: #333;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h3 {
    color: #2E5BFF;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

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

.step {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step i {
    font-size: 2rem;
    color: #00C9FF;
    margin-bottom: 1rem;
}

.step h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-urgent {
    background: #FFF4E6;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #FFB84D;
    margin: 2rem 0;
}

.contact-urgent h3 {
    color: #CC8500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.phone-link {
    display: inline-block;
    padding: 15px 25px;
    background: #2E5BFF;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 1rem;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.btn-primary {
    background: #2E5BFF;
    color: white;
}

.btn-secondary {
    background: #E8F4FD;
    color: #2E5BFF;
    border: 2px solid #2E5BFF;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
}

/* Blog Styles */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2E5BFF 0%, #00C9FF 100%);
    color: white;
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.blog-articles {
    padding: 80px 0;
    background: #F8FAFF;
}

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

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
}

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

.article-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #E8F4FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-icon i {
    font-size: 2rem;
    color: #2E5BFF;
}

.article-content h2 {
    margin-bottom: 1rem;
}

.article-content h2 a {
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
}

.article-content h2 a:hover {
    color: #2E5BFF;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.read-more {
    color: #2E5BFF;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.read-more:hover {
    color: #1E4BFF;
}

/* Newsletter */
.newsletter {
    background: #2E5BFF;
    color: white;
    padding: 60px 0;
}

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

.newsletter-content h2 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.newsletter-form {
    margin-top: 2rem;
}

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

.newsletter-input input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px 0 0 10px;
    font-size: 1rem;
}

.newsletter-input button {
    padding: 15px 25px;
    background: #00C9FF;
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-input button:hover {
    background: #00B4E6;
}

/* Article Styles */
.article-main {
    padding-top: 80px;
    background: #F8FAFF;
    min-height: 100vh;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E8F0FE;
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #E8F4FD;
    color: #2E5BFF;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.article-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

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

.content-section h2 {
    font-size: 1.8rem;
    color: #2E5BFF;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #444;
}

.content-section ul, .content-section ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #444;
}

.highlight-box {
    background: #F0F8FF;
    border-left: 4px solid #2E5BFF;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.highlight-box h3 {
    color: #2E5BFF;
    margin-bottom: 1rem;
}

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

.tip-card, .metric-item {
    background: #FAFBFF;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #E8F0FE;
}

.tip-card h4, .metric-item h4 {
    color: #2E5BFF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.metric-item {
    text-align: center;
}

.metric-item i {
    font-size: 2rem;
    color: #00C9FF;
    margin-bottom: 1rem;
}

.results-box {
    background: linear-gradient(135deg, #2E5BFF 0%, #00C9FF 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: white;
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.result-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-footer {
    border-top: 1px solid #E8F0FE;
    padding-top: 3rem;
    margin-top: 4rem;
}

.author-bio {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #F8FAFF;
    border-radius: 15px;
}

.author-avatar i {
    font-size: 4rem;
    color: #2E5BFF;
}

.author-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #666;
    line-height: 1.6;
}

.article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Cookie Table Styles */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E8F0FE;
}

.cookie-table th {
    background: #2E5BFF;
    color: white;
    font-weight: bold;
}

.cookie-table tr:hover {
    background: #F8FAFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-card {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-input {
        flex-direction: column;
    }
    
    .newsletter-input input,
    .newsletter-input button {
        border-radius: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}