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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: #22C55E;
    color: white;
}

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

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

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

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

.btn-outline:hover {
    background-color: #22C55E;
    color: white;
}

.section {
    padding: 80px 0;
}

.gray-bg {
    background-color: #F9FAFB;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header svg {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid #22C55E;
    padding: 20px;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1F2937;
}

.cookie-text p {
    color: #6B7280;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

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

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

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
}

.cookie-modal-content h3 {
    margin-bottom: 20px;
    color: #1F2937;
}

.cookie-category {
    margin-bottom: 15px;
}

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

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

.cookie-category span {
    font-size: 14px;
    color: #6B7280;
}

.cookie-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #22C55E;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1F2937;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #EBF8FF 0%, #F0FDF4 100%);
    padding: 100px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

/* Two Column Layout */
.two-column {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.column {
    flex: 1;
}

.column h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.column p {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.7;
}

.column ul {
    list-style: none;
}

.column li {
    color: #6B7280;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 300px;
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.service-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Advantages Grid */
.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.advantage-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 280px;
}

.advantage-item:hover {
    transform: translateY(-3px);
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.advantage-item p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.testimonial-rating {
    color: #FCD34D;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: #4B5563;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author strong {
    color: #1F2937;
    font-weight: 600;
}

.testimonial-author span {
    color: #6B7280;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

/* Blog Grid */
.blog-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    flex: 1;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.blog-date {
    color: #6B7280;
    font-size: 14px;
}

.blog-category {
    background: #22C55E;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.blog-content h3 {
    margin-bottom: 12px;
}

.blog-content h3 a {
    color: #1F2937;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: #22C55E;
}

.blog-content p {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.read-more {
    color: #22C55E;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.read-more:hover {
    color: #16A34A;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-item h4 {
    color: #1F2937;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    color: #6B7280;
}

/* Forms */
.contact-form, .newsletter-form {
    flex: 1;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22C55E;
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
}

.checkbox-label a {
    color: #22C55E;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.newsletter-form p {
    margin-bottom: 16px;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
}

.newsletter-input {
    display: flex;
    gap: 8px;
}

.newsletter-input input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-input input:focus {
    outline: none;
    border-color: #22C55E;
}

.newsletter-input .btn {
    padding: 10px 16px;
    font-size: 14px;
}

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

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
}

.footer-section p {
    color: #D1D5DB;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #22C55E;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #D1D5DB;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #22C55E;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-legal a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: #22C55E;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 14px;
}

/* Article Pages */
.article-header {
    background: linear-gradient(135deg, #EBF8FF 0%, #F0FDF4 100%);
    padding: 60px 0;
    text-align: center;
}

.article-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    color: #6B7280;
    font-size: 16px;
    margin-bottom: 20px;
}

.article-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1F2937;
    margin: 32px 0 16px;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1F2937;
    margin: 24px 0 12px;
}

.article-content p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.article-content li {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 8px;
}

.article-image {
    margin: 32px 0;
    text-align: center;
}

.article-image svg {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.back-to-home {
    display: inline-block;
    margin-top: 40px;
    color: #22C55E;
    text-decoration: none;
    font-weight: 500;
}

.back-to-home:hover {
    color: #16A34A;
}

/* Thanks Page */
.thanks-section {
    background: linear-gradient(135deg, #EBF8FF 0%, #F0FDF4 100%);
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-icon {
    margin-bottom: 32px;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin: 32px 0 16px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin: 24px 0 12px;
}

.legal-content p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-content li {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 32px;
    }
    
    .two-column {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-grid,
    .advantages-grid {
        flex-direction: column;
    }
    
    .service-card,
    .advantage-item {
        min-width: auto;
    }
    
    .testimonials-grid,
    .blog-grid {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .newsletter-input {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}