
        /* Загальні стилі */
        body {
            font-family: "Inter", Helvetica, arial, sans-serif;
            margin: 0;
            padding: 0;
        }

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

        /* Верхнє меню */
        header {
            background-color: #fff;
            padding: 10px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

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

        header .logo img {
            max-width: 200px;
            margin-left: 25%;
        }

        nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        nav ul li {
            margin-right: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #ff4a00;
        }

        .auth-buttons {
            display: flex;
            align-items: center;
        }

        .auth-buttons .btn {
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .auth-buttons .btn.btn-secondary {
            background-color: transparent;
            border: 2px solid #ff4a00;
            color: #ff4a00;
            margin-right: 10px;
        }

        .auth-buttons .btn.btn-secondary:hover {
            background-color: #ff4a00;
            color: #fff;
        }

        .auth-buttons .btn.btn-primary {
            background-color: #ff4a00;
            color: #fff;
        }

        .auth-buttons .btn.btn-primary:hover {
            background-color: #ff6500;
        }

        /* Hero Section */
        .hero-section {
            text-align: center;
            padding: 70px 20px;
        }

        .hero-section h1 {
            font-size: 3em;
            margin-bottom: 40px;
            font-weight: 700;
            color: #333;
        }

        .hero-section p {
            font-size: 1.5em;
            margin-bottom: 30px;
            color: #201515;
        }

        .hero-section .btn {
            text-decoration: none;
            color: #fff;
            padding: 15px 30px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
        }

        .hero-section .btn-primary {
            background-color: #ff4a00;
        }

        .hero-section img {
            width: 100%;
            max-width: 500px;
            margin-top: 40px;
        }

        /* Pricing Section */
        .pricing-section {
            background-color: #cde4e1;
            padding: 60px 20px;
            text-align: center;
        }

        .pricing-section h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
            font-weight: 700;
            color: #333;
        }

        .pricing-wrapper {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .pricing-plan {
            background-color: #fff;
            padding: 30px;
            margin: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 300px;
            transition: transform 0.3s;
        }

        .pricing-plan:hover {
            transform: translateY(-10px);
        }

        .pricing-plan h3 {
            font-size: 2em;
            margin-bottom: 20px;
            font-weight: 600;
            color: #ff4a00;
        }

        .pricing-plan p {
            font-size: 1.5em;
            margin-bottom: 20px;
            font-weight: 300;
            color: #333;
        }

        .pricing-plan ul {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }

        .pricing-plan ul li {
            font-size: 1em;
            margin-bottom: 10px;
            color: #201515;
        }

        .pricing-plan .btn {
            text-decoration: none;
            color: #fff;
            padding: 10px 20px;
            border-radius: 4px;
        }

        .pricing-plan .btn-secondary {
            background-color: #ff4a00;
        }

        .pricing-plan .note {
            margin-top: 10px;
            font-size: 0.9em;
            color: #888;
        }

        .highlighted {
            border: 2px solid #ff4a00;
        }

        /* Starter Section */
        .starter-section {
            background-color: rgb(43, 35, 88);
            padding: 40px 20px;
        }

        .starter-plan {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            max-height: 100px;
        }

        .starter-plan-content {
            font-size: 1em;
            color: #333;
        }

        .starter-plan-content h3 {
            font-size: 1.5em;
            margin: 0 0 10px 0;
            font-weight: 600;
            color: rgb(255, 136, 0);
        }

        .starter-plan-details {
            display: flex;
            align-items: center;
        }

        .starter-plan-details p {
            font-size: 1.2em;
            font-weight: 500;
            color: #333;
            margin: 0 15px 0 0;
        }

        .starter-plan-details .btn {
            text-decoration: none;
            padding: 5px 5px;
            border-radius: 4px;
            background-color: rgb(255, 136, 0);
            color: #fff;
            font-size: 0.9em;
            text-align: center;
        }

        /* Нижнє меню */
        footer {
            background-color: #fff;
            padding: 20px 0;
            border-top: 1px solid #e0e0e0;
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
        }

        footer nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }

        footer nav ul li {
            margin-right: 20px;
        }

        footer nav ul li a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
        }

        footer .footer-links {
            display: flex;
            align-items: center;
        }

        footer .footer-links a {
            text-decoration: none;
            color: #333;
            margin-right: 20px;
            font-size: 14px;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .container {
                padding: 0 10px;
            }

            header .container {
                flex-direction: column;
                align-items: stretch;
                padding: 10px;
            }

            nav ul {
                margin-top: 20px;
                justify-content: center;
            }

            .auth-buttons {
                margin-top: 20px;
                justify-content: center;
            }

            .auth-buttons .btn {
                margin-right: 0;
            }

            .hero-section {
                padding: 80px 20px;
            }

            .hero-section h1 {
                font-size: 2.5em;
            }

            .hero-section p {
                font-size: 1.2em;
            }

            .pricing-section {
                padding: 40px 10px;
            }

            .pricing-plan {
                width: calc(50% - 20px);
                max-width: none;
            }

            .starter-plan {
                flex-direction: column;
                align-items: flex-start;
                max-height: none;
            }

            .starter-plan-details {
                justify-content: flex-end;
                width: 100%;
                margin-top: 10px;
            }

            .starter-plan-details p {
                margin: 0 0 10px 0;
            }
        }

        .logo-footer {
            font-size: 300%;
            font-weight: 900;
            text-align: center;
        }

        h1 {
            font-family: "Degular", Helvetica, arial, sans-serif;
        }

        .pp {
            padding-bottom: 15px;
        }
