/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background: #7f8c8d;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #fff;
    padding: 20px;
    transition: left 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 15px 0;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #ecf0f1;
    color: #27ae60;
}

/* Hero Card */
.hero-card {
    position: relative;
    margin-top: 0;
    overflow: hidden;
    border-radius: 0;
    background: #fff;
}

.hero-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.9), rgba(44, 62, 80, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 20px;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #27ae60;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Card Grid Sections */
.intro-cards,
.services-showcase,
.process-cards,
.values-section,
.team-section,
.faq-section {
    padding: 60px 20px;
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Section Highlight */
.section-highlight {
    padding: 70px 20px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.section-highlight h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.lead-text {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-highlight p {
    margin-bottom: 15px;
    line-height: 1.8;
    opacity: 0.95;
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 12px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-service:hover {
    background: #229954;
}

/* Testimonial Strip */
.testimonial-strip {
    padding: 60px 20px;
    background: #2c3e50;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.testimonial-card p {
    color: white;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-card cite {
    color: #27ae60;
    font-style: normal;
    font-weight: 600;
}

/* Why Us Section */
.why-us-section {
    padding: 70px 20px;
    background: white;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #5a6c7d;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
    color: #2c3e50;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.content-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.content-image img {
    width: 100%;
    height: auto;
}

/* Process Cards */
.process-cards {
    background: #ecf0f1;
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    padding-left: 80px;
}

.process-number {
    position: absolute;
    left: 25px;
    top: 30px;
    width: 45px;
    height: 45px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.cta-card-large {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card-large h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-card-large p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Quality Section */
.quality-section {
    padding: 70px 20px;
    background: white;
}

.quality-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
}

.quality-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #5a6c7d;
    font-size: 1.05rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow-y: auto;
    padding: 20px;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    font-weight: 300;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #2c3e50;
}

.modal-content h2 {
    margin-bottom: 25px;
    color: #2c3e50;
}

/* Forms */
.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 14px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #27ae60;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 20px;
    background: #f8f9fa;
}

.service-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 35px 25px;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-badge {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #5a6c7d;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    line-height: 1.6;
    color: #2c3e50;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Service Guarantee */
.service-guarantee {
    padding: 60px 20px;
    background: #ecf0f1;
}

.guarantee-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.guarantee-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.guarantee-card > p {
    margin-bottom: 30px;
    line-height: 1.7;
    color: #5a6c7d;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem;
    color: #2c3e50;
}

.guarantee-icon {
    color: #27ae60;
    font-size: 1.3rem;
    font-weight: bold;
}

/* About Page */
.about-intro {
    padding: 60px 20px;
    background: white;
}

.values-grid,
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 70px 20px;
    background: #f8f9fa;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
}

.story-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #5a6c7d;
}

/* Team Section */
.team-section {
    background: white;
}

.team-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    padding: 30px 25px;
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.team-role {
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.expertise-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Commitment Section */
.commitment-section {
    padding: 70px 20px;
    background: white;
}

.commitment-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
}

.commitment-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #5a6c7d;
}

/* Contact Page */
.contact-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info > p {
    margin-bottom: 30px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-text p {
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-text a {
    color: #27ae60;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #229954;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.contact-form-section {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-form-section > p {
    margin-bottom: 25px;
    color: #5a6c7d;
    line-height: 1.6;
}

/* Visit Section */
.visit-section {
    padding: 70px 20px;
    background: white;
}

.visit-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
}

.visit-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #5a6c7d;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 20px;
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background: white;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
}

.thanks-card h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.thanks-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-details p {
    margin: 0;
    color: #2c3e50;
}

.thanks-info {
    margin-top: 30px;
    text-align: left;
    background: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 10px 0 10px 28px;
    position: relative;
    line-height: 1.6;
    color: #2c3e50;
}

.thanks-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #229954;
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #d5dbdb;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 20px;
    background: white;
}

.contact-info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.contact-info-section > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #2c3e50;
}

.contact-quick-item .icon {
    font-size: 1.5rem;
}

.contact-quick-item a {
    color: #27ae60;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px;
    background: white;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 15px;
    color: #5a6c7d;
}

.legal-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #5a6c7d;
}

.legal-content a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #229954;
}

.legal-content strong {
    color: #2c3e50;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.gdpr-table th,
.gdpr-table td,
.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.gdpr-table th,
.cookie-table th {
    background: #27ae60;
    color: white;
    font-weight: 600;
}

.gdpr-table tr:hover,
.cookie-table tr:hover {
    background: #f8f9fa;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .card-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .content-text,
    .content-image {
        flex: 1;
    }

    .service-detail-card {
        display: flex;
    }

    .service-detail-card.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-image {
        flex: 0 0 45%;
        height: auto;
    }

    .service-detail-content {
        flex: 1;
        padding: 40px;
    }

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-card {
        flex: 1 1 calc(50% - 15px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 calc(50% - 12px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-form-section {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-card {
        flex: 1 1 calc(50% - 12px);
    }

    .guarantee-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .guarantee-item {
        flex: 0 0 auto;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .contact-quick {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-content p {
        flex: 1;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        display: flex;
        gap: 5px;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 8px 16px;
    }

    .hero-image-wrapper {
        height: 550px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .process-card {
        flex: 1 1 calc(25% - 20px);
    }

    .value-card {
        flex: 1 1 calc(25% - 20px);
    }

    .stat-card {
        flex: 1 1 calc(25% - 15px);
    }
}