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

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

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

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

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

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-secondary:hover {
    background: #007bff;
    color: #fff;
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
}

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

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

.nav-menu a:hover {
    color: #007bff;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.3rem;
}

.hamburger span {
    width: 2.5rem;
    height: 0.3rem;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background: url("img/main.png") no-repeat center center;
    background-size: cover;
    background-attachment: scroll; /* або fixed, якщо потрібно ефект паралаксу */
    min-height: 70vh; /* опціонально — щоб був висотний блок */
}


.hero-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 60rem;
}

.hero-image img {
    width: 100%;
    max-width: 50rem;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Section */
.blog {
    padding: 8rem 0;
    background: #fff;
}

.blog h2 {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: #333;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-0.5rem);
}

.blog-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.blog-content {
    padding: 2.4rem;
}

.blog-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.blog-date {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
}

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

/* Why Choose Us */
.why-choose {
    padding: 8rem 0;
    background: #f8f9fa;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.why-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-point h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.why-point p {
    color: #666;
    line-height: 1.6;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Economic Knowledge */
.economic-knowledge {
    padding: 8rem 0;
    background: #fff;
}

.economic-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.economic-text {
    text-align: center;
}

.economic-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.economic-text p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 60rem;
}

.economic-image img {
    width: 100%;
    max-width: 50rem;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services */
.services {
    padding: 8rem 0;
    background: #f8f9fa;
}

.services h2 {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: #333;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: #fff;
    padding: 3rem 2.4rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

.service-icon {
    margin-bottom: 2rem;
}

.icon-circle {
    width: 6rem;
    height: 6rem;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle span {
    font-size: 2.4rem;
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

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

/* Investment Simple */
.investment-simple {
    padding: 8rem 0;
    background: #fff;
}

.investment-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.investment-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.investment-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.investment-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-section {
    padding: 8rem 0;
    background: #f8f9fa;
}

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

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    transition: border-color 0.3s ease;
}

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

/* Footer */
.footer {
    background: #003249;
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-brand h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links a,
.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.8;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #007bff;
}

.footer-contact p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .nav-menu {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .hero-text {
        flex: 1;
        text-align: left;
    }

    .hero-text h2 {
        font-size: 3.6rem;
    }

    .blog-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .blog-card {
        flex: 1;
        min-width: 30rem;
    }

    .why-content {
        flex-direction: row;
        align-items: center;
    }

    .why-text {
        flex: 1;
    }

    .why-image {
        flex: 1;
    }

    .economic-content {
        flex-direction: row-reverse;
        align-items: center;
    }

    .economic-text {
        flex: 1;
        text-align: left;
    }

    .economic-image {
        flex: 1;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 30rem;
    }

    .investment-content {
        flex-direction: row;
        align-items: center;
    }

    .investment-text {
        flex: 1;
    }

    .investment-image {
        flex: 1;
    }

    .contact-form-content {
        flex-direction: row;
        align-items: center;
    }

    .contact-image {
        flex: 1;
    }

    .contact-form-wrapper {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4rem;
    }

    .footer-brand {
        flex: 1;
        min-width: 25rem;
    }

    .footer-links,
    .footer-legal,
    .footer-contact {
        flex: 0 0 20rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-text h2 {
        font-size: 4.8rem;
    }

    .hero-text p {
        font-size: 2rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .service-card {
        min-width: auto;
    }

    .blog-grid {
        gap: 4rem;
    }

    .why-content,
    .economic-content,
    .investment-content,
    .contact-form-content {
        gap: 6rem;
    }
}

/* Success Page */
.success-section {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 3rem;
}

.check-circle {
    width: 8rem;
    height: 8rem;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.success-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.success-content > p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.contact-info {
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-top: 1.5rem;
    font-style: italic;
    color: #007bff;
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 7rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 7rem);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 0;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.8rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-0.5rem, 0.6rem);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-0.5rem, -0.6rem);
    }

    body.menu-open {
        overflow: hidden;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions .btn-primary,
    .success-actions .btn-secondary {
        width: 100%;
        max-width: 30rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 4rem;
    }

    .hero-text h2 {
        font-size: 5.4rem;
    }

    .services-grid {
        gap: 4rem;
    }

    .success-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-text {
    border-radius: 8px;
    border: 1px solid #2DBDE8;
    background: #FFF;
    display: flex;
    max-width: 524px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
    flex-direction: column;
}