        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden;
            background: #0a0a0a;
            font-family: 'Inter', 'Arial', sans-serif;
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 255, 165, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #000066 50%, #003333 75%, #0a0a0a 100%);
            background-size: 100% 100%, 100% 100%, 100% 100%, 400% 400%;
            animation: gradientWave 15s ease infinite;
        }

        /* Particle System */
        .particle-system {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            animation: particleFloat 12s infinite linear;
            opacity: 0;
        }

        .container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
            z-index: 10;
        }

        .questionnaire-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 0, 110, 0.3);
            border-radius: 20px;
            padding: 3rem;
            width: 100%;
            max-width: 700px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(255, 0, 110, 0.2);
        }

        .questionnaire-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
            background-size: 400% 400%;
            animation: gradientShift 3s ease infinite;
        }

        .header {
            text-align: center;
            margin-bottom: 2rem;
        }

        /* Logo styling */
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

.logo-img {
    height: 260px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0,255,255,0.45));
    transition: filter 0.25s ease, transform 0.25s ease;
    transform: translateX(-20px);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #06ffa5;
    color: #06ffa5;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: rgba(6, 255, 165, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 255, 165, 0.2);
}



        .nav-logo {
            display: flex;
            align-items: center;
            margin-left: 40px;
        }

        .nav-logo img {
            height: 200px;
            width: auto;
        }

        .company-name {
            font-size: 2.2rem;
            font-weight: 900;
            color: #fff;
            margin-left: 1rem;
            background: linear-gradient(45deg, #ff006e, #06ffa5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* Welcome Page Styles */
        .welcome-container {
            text-align: center;
            display: block;
        }

        .welcome-container.hidden {
            display: none;
        }

        .welcome-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ff006e, #8338ec, #06ffa5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .welcome-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff006e, #8338ec);
            color: white;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
        }

        .btn-secondary {
            padding: 1rem 2rem;
            background: transparent;
            border: 2px solid #06ffa5;
            color: #06ffa5;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            background: rgba(6, 255, 165, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(6, 255, 165, 0.2);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 0, 110, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
            border-color: rgba(255, 0, 110, 0.4);
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .feature-title {
            color: #fff;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .progress-container {
            margin-bottom: 3rem;
            display: none;
        }

        .progress-container.active {
            display: block;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .progress-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #ff006e, #8338ec, #06ffa5);
            border-radius: 4px;
            transition: width 0.5s ease;
            width: 0%;
        }

        .question-container {
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
            display: none;
        }

        .question-container.active {
            opacity: 1;
            transform: translateY(0);
            display: block;
        }

        .question {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 600;
        }

        .options {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .option {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 0, 110, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .option::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 110, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .option:hover::before {
            left: 100%;
        }

        .option:hover {
            border-color: rgba(255, 0, 110, 0.5);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
        }

        .option.selected {
            border-color: #06ffa5;
            background: rgba(6, 255, 165, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(6, 255, 165, 0.2);
        }

        .option-title {
            font-weight: 700;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .option-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            line-height: 1.5;
        }

        .option-price {
            color: #06ffa5;
            font-weight: 600;
            font-size: 1rem;
        }

        .navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

        /* Results Screen */
        .results-container {
            text-align: center;
            display: none;
        }

        .results-container.active {
            display: block;
        }

        .total-price {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff006e, #06ffa5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 2rem 0;
        }

        .selected-options {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 0, 110, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: left;
        }

        .selected-options h3 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .selected-option {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .selected-option:last-child {
            border-bottom: none;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        /* Makes everything slightly bigger */
/* For question titles */
.question-title {
    font-size: 1.3rem; /* increase from 1.2rem or whatever current size */
}

/* For option titles */
.option-title {
    font-size: 1.1rem; /* increase from 1rem */
}

/* For option descriptions */
.option-desc {
    font-size: 0.95rem; /* increase from 0.9rem */
}

/* For prices */
.option-price {
    font-size: 1.05rem; /* increase from 1rem */
}

/* General text increase - if you want to increase all text */
.quiz-container {
    font-size: 1.2rem; /* This will make all text 10% bigger */
}

        /* Extra Requirements Section */
        .extra-requirements {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(131, 56, 236, 0.3);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: left;
        }

        .extra-requirements h3 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            text-align: center;
            background: linear-gradient(45deg, #8338ec, #06ffa5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .extra-requirements textarea {
            width: 100%;
            min-height: 120px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 0, 110, 0.2);
            border-radius: 10px;
            padding: 1rem;
            color: #fff;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            transition: all 0.3s ease;
        }

        .extra-requirements textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .extra-requirements textarea:focus {
            outline: none;
            border-color: #06ffa5;
            box-shadow: 0 0 20px rgba(6, 255, 165, 0.2);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            margin: 5% auto;
            padding: 2rem;
            border: 1px solid rgba(255, 0, 110, 0.3);
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 60px rgba(255, 0, 110, 0.3);
        }

        .modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
            background-size: 400% 400%;
            animation: gradientShift 3s ease infinite;
            border-radius: 20px 20px 0 0;
        }

        .close {
            color: rgba(255, 255, 255, 0.7);
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: #ff006e;
            transform: scale(1.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #fff;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 0, 110, 0.2);
            border-radius: 10px;
            color: #fff;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #06ffa5;
            box-shadow: 0 0 20px rgba(6, 255, 165, 0.2);
        }

        .form-summary {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 0, 110, 0.2);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            max-height: 200px;
            overflow-y: auto;
        }

        .form-summary h4 {
            color: #06ffa5;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .form-summary-item {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .form-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .success-message {
            background: rgba(6, 255, 165, 0.1);
            border: 2px solid rgba(6, 255, 165, 0.3);
            border-radius: 10px;
            padding: 1rem;
            margin: 1rem 0;
            color: #06ffa5;
            text-align: center;
            font-weight: 600;
            display: none;
        }

        /* Add these rules to your existing servicii.css file to make text white */

/* General text color */
body, 
h1, h2, h3, h4, h5, h6, 
p, span, div, 
label, textarea, input {
  color: white !important;
}

/* Specific elements that might need white text */
.welcome-container h2,
.welcome-container p,
.question,
.option-title,
.option-desc,
.option-price,
.progress-info span,
.results-container h2,
.selected-options,
.extra-requirements h3,
.form-summary h4,
.form-group label,
.modal-content h2 {
  color: white !important;
}

/* Make sure input placeholders are visible */
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Input fields styling for better visibility */
input[type="text"],
input[type="email"], 
input[type="tel"],
textarea {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  padding: 10px;
  border-radius: 5px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  outline: none;
}

        /* Animations */
        @keyframes gradientWave {
            0% { background-position: 0% 50%, 0% 50%, 0% 50%, 0% 50%; }
            50% { background-position: 100% 50%, 100% 50%, 100% 50%, 100% 50%; }
            100% { background-position: 0% 50%, 0% 50%, 0% 50%, 0% 50%; }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes logoShine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
            100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        }

        @keyframes particleFloat {
            0% { 
                transform: translateY(100vh) translateX(0px) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 0.8; }
            90% { opacity: 0.8; }
            100% { 
                transform: translateY(-100px) translateX(200px) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .questionnaire-card {
                padding: 2rem;
                margin: 1rem;
            }

            .nav-logo img {
                height: 150px;
            }

            .welcome-title {
                font-size: 2rem;
            }

            .question {
                font-size: 1.3rem;
            }

            .total-price {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .modal-content {
                margin: 10% auto;
                padding: 1.5rem;
                width: 95%;
            }

            .form-buttons {
                flex-direction: column;
            }
        }