/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F6F9FB;
    color: #333333;
    line-height: 1.6;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    color: #1B1F3B;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #FF5C00;
    transition: all 0.3s ease;
}

a:hover {
    color: #FDB813;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    margin: auto;
    max-width: max-content;
    display: block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #FF5C00, #FDB813);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 92, 0, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 92, 0, 0.4);
    color: white;
}

/* Header */
header {
    background-color: rgba(246, 249, 251, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF5C00;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1B1F3B;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FF5C00, #FDB813);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

/* Advantages Section */
.advantages {
    background-color: #F0F5F9;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.advantage-icon {
    font-size: 2.5rem;
    color: #FF5C00;
    margin-bottom: 15px;
}

/* Steps Section */
.steps {
    background-color: white;
}

.step-card {
    position: relative;
    padding: 30px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FF5C00, #FDB813);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Testimonials */
.testimonial-card {
    position: relative;
    padding: 25px;
}

.testimonial-content {
    position: relative;
    padding: 20px;
}

.testimonial-content::before {
    content: "";
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(253, 184, 19, 0.2);
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-info {
    margin-left: 15px;
}

.author-name {
    font-weight: 600;
}

.author-position {
    font-size: 0.9rem;
    color: #666;
}

/* Form Section */
.form-section {
    background-color: #F0F5F9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #FF5C00;
    box-shadow: 0 0 0 2px rgba(255, 92, 0, 0.2);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    background-color: white;
}

option {
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 4px;
}

/* FAQ Section */
.faq-checkbox {
    display: none;
}

.faq-container {
    margin-bottom: 10px;
}

.faq-question {
    display: block;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
    margin-top: 2px;
    border-radius: 0 0 5px 5px;
}

.faq-inner {
    padding: 15px;
}

.faq-checkbox:checked + .faq-question::after {
    content: "−";
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
}

/* Footer */
footer {
    background-color: rgba(235, 240, 245, 0.95);
    padding: 60px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-contact {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: #FF5C00;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 400px;
    width: 90%;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: fadeIn 0.5s;
}

.cookie-close {
    text-align: right;
}

.cookie-btn {
    margin-top: 15px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* Thank You Page */
.thanks-section {
    min-height: 100vh;
    display: grid;
    align-items: center;
}

.thanks-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 5rem auto;
    max-width: 600px;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
}

#menu-toggle:checked ~ nav {
    max-height: 100vh;
    height: 100vh;
}

body:has(#menu-toggle:checked) {
    overflow: hidden;
}

 

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1001;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(235, 240, 245, 0.98);
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        z-index: 1000;
    }
    
    nav ul {
        flex-direction: column;
        padding: 80px 20px 40px;
        gap: 5px;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 10px;
        text-align: center;
        font-size: 1.2rem;
    }
    
  
    
    .thanks-section {
        height: auto;
    }
}
