/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    word-break: break-word;
}

svg {
    max-width: 100%;
}

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

/* Header and Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    color: #8100b0;
}

.nav-logo svg {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #8100b0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #8100b0b8, #f76700c9);
}

.hero-svg {
    width: 100%;
    height: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Buttons */
.cta-button, .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button, .btn-primary {
    background: linear-gradient(45deg, #8100b0, #f76700);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #8100b0;
    border: 2px solid #8100b0;
}

.cta-button:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(129,0,176,0.3);
}

.btn-secondary:hover {
    background: #8100b0;
    color: white;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.section-header svg {
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.learn-more {
    color: #8100b0;
    text-decoration: none;
    font-weight: bold;
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.achievement-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.achievement-item h3 {
    font-size: 3rem;
    color: #8100b0;
    margin-bottom: 10px;
}

/* Services */
.services-section {
    background: #f8f9fa;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card h3 {
    color: #8100b0;
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f76700;
    margin-top: 20px;
}

.services-cta {
    text-align: center;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
}

.benefit-item svg {
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #8100b0;
    margin-bottom: 15px;
}

/* Reviews */
.reviews-section {
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    color: #f76700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.reviewer {
    font-style: italic;
    color: #666;
    margin-top: 15px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: #8100b0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #8100b0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #ccc;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #8100b0;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8100b0, #f76700);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item svg {
    margin-right: 15px;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8100b0;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.form-submit {
    background: linear-gradient(45deg, #8100b0, #f76700);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.main-message {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    background: #8100b0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thank-you-actions {
    margin-top: 40px;
    gap: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-buttons button:first-child {
    background: #8100b0;
    color: white;
}

.cookie-buttons button:nth-child(2) {
    background: #f76700;
    color: white;
}

.cookie-buttons button:nth-child(3),
.cookie-buttons button:nth-child(4) {
    background: transparent;
    color: white;
    border: 1px solid #666;
}

/* About Page Styles */
.company-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.company-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h2 {
    color: #8100b0;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.company-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-item svg {
    margin-bottom: 15px;
}

.value-item h3 {
    color: #8100b0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
}

.story-image {
    text-align: center;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    margin-bottom: 20px;
}

.team-member h3 {
    color: #8100b0;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.team-member .title {
    color: #f76700;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1rem;
}

.team-member .description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.qualifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qualification {
    background: linear-gradient(45deg, #8100b0, #f76700);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
}

.mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: #8100b0;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission-point span {
    font-weight: 500;
    color: #333;
}

/* Services Page - Process and FAQ Sections */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    flex-shrink: 0;
    background: linear-gradient(45deg, #8100b0, #f76700);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    color: #8100b0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    color: #8100b0;
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    flex-shrink: 0;
    background: #8100b0;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.7;
    border-top: 1px solid #eee;
}

/* Contact Page - Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    color: #8100b0;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-item h3 {
    color: #8100b0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.location-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    margin-bottom: 30px;
    color: #8100b0;
}

.legal-page h2 {
    margin: 30px 0 20px;
    color: #333;
}

.legal-page h3 {
    margin: 20px 0 15px;
    color: #8100b0;
}

.legal-page p, .legal-page li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 20px;
}

/* Services Catalog */
.services-catalog {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-detailed {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
}

.service-icon {
    text-align: center;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #f76700;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.price-tag {
    background: linear-gradient(45deg, #8100b0, #f76700);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 20px;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f76700;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.features {
    list-style: none;
    margin: 20px 0;
}

.features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8100b0;
    font-weight: bold;
}

.service-cta {
    width: 100%;
    background: linear-gradient(45deg, #8100b0, #f76700);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
    transition: transform 0.3s;
}

.service-cta:hover {
    transform: translateY(-2px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid, [class*="-grid"], .services-preview {
        grid-template-columns: 1fr !important;
    }
    
    /* About page mobile styles */
    .company-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-content h2 {
        font-size: 2rem;
    }
    
    /* Services page mobile styles */
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    /* Contact page mobile styles */
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .map-section h2 {
        font-size: 1.8rem;
    }
}