/* 
* Main stylesheet for domain website
* Colors:
* - Primary: #2E294E (deep purple)
* - Accent: #F1C40F (bright yellow)
* - Secondary: #F8F1FF (soft purple-white)
* - Text: #1C1C1C (graphite)
*/

/* Reset & Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1C1C1C;
    background-color: #FFFFFF;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2E294E;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}



h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2E294E;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #F1C40F;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2E294E;
    color: white;
    border: none;
    border-radius: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: #241e3e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.button-accent {
    background-color: #F1C40F;
    color: #1C1C1C;
}

.button-accent:hover {
    background-color: #e2b60c;
    color: #1C1C1C;
}

.button-outline {
    background-color: transparent;
    border: 2px solid #2E294E;
    color: #2E294E;
}

.button-outline:hover {
    background-color: #2E294E;
    color: white;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-text {
    color: #2E294E;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    font-weight: 600;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F1C40F;
    transition: width 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: #2E294E;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #F8F1FF;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2E294E;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    max-height: 350px;
    z-index: 1;
}

/* About Section */
.about {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.about-content h2:after {
    left: 0;
    transform: none;
}

/* Benefits Section */
.benefits {
    background-color: #F8F1FF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #F8F1FF;
    color: #2E294E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

/* Services Section */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    background-color: #F8F1FF;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-title {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-description {
    margin-bottom: 20px;
}

/* Contact Form Section */
.contact {
    background-color: #F8F1FF;
}

.form-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #2E294E;
    outline: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 4px;
}

.form-submit {
    width: 100%;
    padding: 14px;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #F8F1FF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #2E294E;
}

.testimonial-company {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    background-color: #F8F1FF;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2E294E;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #faf7ff;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
}

.faq-answer.open {
    padding: 20px;
    max-height: 1000px;
    display: block;
}

/* CTA Section */
.cta {
    background-color: #2E294E;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta h2:after {
    background-color: #F1C40F;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    background-color: #1C1C1C;
    color: #f5f5f5;
    padding: 60px 0 20px;
}

.footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info p {
    margin-bottom: 0;
}

.contact-list,
.links-list {
    list-style: none;
}

.contact-list li,
.links-list li {
    margin-bottom: 10px;
}

.footer a {
    color: #F8F1FF;
    transition: color 0.3s;
}

.footer a:hover {
    color: #F1C40F;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(46, 41, 78, 0.95);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    display: none;
}

.cookie-consent p {
    margin: 0;
    padding-right: 20px;
}

.cookie-consent a {
    color: #F1C40F;
    text-decoration: underline;
}

/* Thank You Page */
.thank-you {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    background-color: #F8F1FF;
    padding: 0;
}

.thank-you-content {
    max-width: 600px;
    width: 100%;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    border: 3px solid #2E294E;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: #F1C40F;
    margin-bottom: 20px;
}

/* Policy Pages */
.policy-page {
    padding: 120px 0 60px;
    min-height: calc(100vh - 80px);
}

.policy-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-container h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.policy-container h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-container ul, 
.policy-container ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

/* Media Queries */
@media (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 70px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .nav-item {
        margin: 0;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 12px 0;
    }
    
    .hero {
        margin-top: 70px;
        height: auto;
        padding: 60px 0;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 80%;
        margin: 40px auto 0;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent p {
        padding-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
}
