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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #4CAF50;
    --accent-color: #FFA726;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --background-light: #F8F9FA;
    --background-white: #FFFFFF;
    --border-color: #E0E6ED;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFA726 100%);
    --gradient-secondary: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: var(--shadow-heavy);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content i {
    font-size: 24px;
    color: var(--accent-color);
}

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

.cookie-buttons button {
    padding: 6px 14px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #FFD700;
    color: #2C3E50;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: #FF1744;
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 23, 68, 0.4);
}

.btn-secondary:hover {
    background: #D50000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.6);
}

.btn-outline {
    background: #00E676;
    color: #2C3E50;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 230, 118, 0.4);
}

.btn-outline:hover {
    background: #00C853;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.6);
}

/* Navigation */
.navbar {
    background: var(--background-white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 900;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-primary);
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--background-white);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Company Info */
.company-info {
    padding: 80px 0;
    background: var(--background-light);
}

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

.info-card {
    background: var(--background-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

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

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--background-white);
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-overview h2 i {
    color: var(--accent-color);
    margin-right: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--background-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    background: var(--background-white);
    box-shadow: var(--shadow-medium);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--gradient-secondary);
    color: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.why-choose-us h2 i {
    color: var(--accent-color);
    margin-right: 15px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.illustration img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

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

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonials h2 i {
    color: var(--primary-color);
    margin-right: 15px;
}

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

.testimonial-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

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

.stars {
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 600;
}

.author i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: var(--background-white);
}

.quick-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.quick-contact h2 i {
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: #FF1744;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 23, 68, 0.4);
}

.submit-btn:hover {
    background: #D50000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 23, 68, 0.6);
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background: var(--background-light);
}

.blog-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.blog-preview h2 i {
    color: var(--secondary-color);
    margin-right: 15px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

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

.blog-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    color: #BDC3C7;
}

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

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

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495E;
    color: #95A5A6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .info-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services-overview h2,
    .testimonials h2,
    .quick-contact h2,
    .blog-preview h2 {
        font-size: 2rem;
    }
}

/* Bright, Compact Button Styles */
.cta-button, .btn, .course-btn, .book-btn, .newsletter-btn, .preference-btn {
    background: #FF1744;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(255, 23, 68, 0.4);
}

.cta-button:hover, .btn:hover, .course-btn:hover, .book-btn:hover, .newsletter-btn:hover, .preference-btn:hover {
    background: #D50000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.6);
}

.btn-green, .btn-success {
    background: #00E676;
    color: #2C3E50;
    box-shadow: 0 2px 8px rgba(0, 230, 118, 0.4);
}

.btn-green:hover, .btn-success:hover {
    background: #00C853;
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.6);
}

.btn-yellow, .btn-warning {
    background: #FFD700;
    color: #2C3E50;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.btn-yellow:hover, .btn-warning:hover {
    background: #FFC107;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
}

.btn-orange {
    background: #FF6B35;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.btn-orange:hover {
    background: #E55A2B;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.6);
}

/* Legal page styles */
.legal-content {
    padding: 80px 0;
    background: var(--background-white);
}

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

.legal-section {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--background-light);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section h2 i {
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.legal-section h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 20px 0 12px;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-section ul, .legal-section ol {
    margin: 15px 0 15px 25px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-info-box {
    background: var(--gradient-secondary);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.highlight-box {
    background: var(--accent-color);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

/* Article styles */
.article-header {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0 80px;
    margin-top: 70px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-content {
    padding: 80px 0;
    background: var(--background-white);
}

.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-section {
    margin-bottom: 40px;
}

.article-section h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-section h2 i {
    color: var(--primary-color);
}

.article-section h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

.article-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.article-section ul, .article-section ol {
    margin: 20px 0 20px 25px;
}

.article-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.tips-list {
    background: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid var(--secondary-color);
}

.key-point {
    background: var(--gradient-secondary);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.author-bio {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
    border: 2px solid var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: var(--gradient-secondary);
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-text h2 i {
    color: var(--accent-color);
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    flex: 0 0 auto;
}

.newsletter-input {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.newsletter-input input {
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    min-width: 280px;
    background: transparent;
}

.newsletter-input input::placeholder {
    color: #999;
}

.newsletter-btn {
    background: #FF1744;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #D50000;
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-input {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-input input {
        min-width: auto;
        width: 100%;
    }
    
    .newsletter-btn {
        border-radius: 0 0 15px 15px;
    }
}

/* Additional utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
