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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(51, 53, 69, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

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

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background: #8B5CF6;
    color: white;
}

.cookie-btn.accept:hover {
    background: #7C3AED;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(51, 53, 69, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
}

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

.logo {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #8B5CF6;
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.logo:hover {
    background: #8B5CF6;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 8px;
    backdrop-filter: blur(10px);
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #333545 0%, #2a2d3e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-text p {
    margin-bottom: 20px;
}

.hero-cta {
    display: inline-block;
    background: #8B5CF6;
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    width: 400px;
    height: 400px;
}

.grid-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.grid-pattern {
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.grid-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333545;
    margin-bottom: 60px;
    line-height: 1.3;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333545;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.service-includes h4 {
    font-weight: 600;
    color: #333545;
    margin-bottom: 15px;
}

.service-includes ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-includes li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 10px;
}

.service-ideal {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 10px;
    border-left: 4px solid #8B5CF6;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.price-label {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B5CF6;
}

/* Insights Section */
.insights {
    padding: 100px 0;
    background: white;
}

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

.insight-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.insight-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.insight-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333545;
    margin: 25px 25px 15px;
    line-height: 1.3;
}

.insight-text {
    padding: 0 25px 30px;
    color: #666;
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    background: #8B5CF6;
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #333545;
    color: white;
}

.faq .section-title {
    color: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333545;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-subtitle {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-input {
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: #8B5CF6;
    background: white;
}

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

.form-submit {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.form-submit:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    height: fit-content;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333545;
    margin-bottom: 10px;
}

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

/* Footer */
.footer {
    background: #333545;
    color: white;
    padding: 40px 0;
}

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

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B5CF6;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-grid {
        width: 350px;
        height: 350px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-grid {
        width: 300px;
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .insight-card {
        margin-bottom: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-grid {
        width: 250px;
        height: 250px;
        gap: 10px;
    }

    .service-card,
    .faq-item,
    .contact-info {
        padding: 25px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .price-value {
        font-size: 1.5rem;
    }
}

.f {
    width: 100%;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 100px 0;
}

.text-section h2 {
    font-family: 'Raleway', sans-serif;

    font-weight: 700;
    font-size: 36px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #0F164A;
}

.text-section p {
    font-family: 'Raleway', sans-serif;

    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #6F6F8E;
}