/* Base Styles */
:root {
    --bg-color: #f9f6f1;
    --text-color: #1f1f1f;
    --primary-color-start: #ff9966;
    --primary-color-end: #ff5e62;
    --secondary-color: #2b2e4a;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}



.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color-start), var(--primary-color-end));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 94, 98, 0.3);
}

/* Header Styles */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--secondary-color);
}

.main-nav .desktop-menu {
    display: flex;
    list-style-type: none;
}

.main-nav .desktop-menu li {
    margin-left: 30px;
}

.main-nav .desktop-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.main-nav .desktop-menu li a:hover {
    color: var(--primary-color-end);
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(43, 46, 74, 0.7), rgba(43, 46, 74, 0.7)), url('../img/UE8INi.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Advantages Section */
.advantages-section {
    background-color: var(--white);
    padding: 100px 0;
}

.advantages-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.advantage-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: var(--bg-color);
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.advantage-item h3 {
    margin-bottom: 15px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service-card {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-content p {
    margin-bottom: 20px;
}

.service-content .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 20px;
}

.testimonial-content {
    padding: 30px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--bg-color);
    transform: rotate(45deg);
    z-index: -1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary-color-end);
}

/* Contact Form Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-section h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

.form-check {
    margin-bottom: 15px;
}

.form-check input {
    margin-right: 10px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin-top: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-question {
    display: block;
    padding: 15px 50px 15px 20px;
    background-color: var(--bg-color);
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-toggle:checked ~ .faq-question:after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white);
}

.faq-answer p {
    padding: 20px;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 1000px;
}

/* CTA Section */
.cta-section {
    background-image: linear-gradient(rgba(43, 46, 74, 0.9), rgba(43, 46, 74, 0.9)), url('../img/t1cJkG.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content h2:after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info {
    flex: 2;
    max-width: 400px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-contact, .footer-links {
    flex: 1;
}

.footer-contact h4, .footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4:after, .footer-links h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color-end);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a, .footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover, .footer-links a:hover {
    color: var(--primary-color-end);
}

.footer-links ul {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background-color: rgba(43, 46, 74, 0.95);
    color: var(--white);
    padding: 15px 0;
    transition: bottom 0.5s ease;
    z-index: 9999;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-consent .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent p {
    margin: 0;
}

.cookie-consent a {
    color: var(--primary-color-start);
}

.cookie-consent button {
    padding: 8px 20px;
    flex-shrink: 0;
}
