/* Reset and 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: #333;
    background-color: #fff;
}

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

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

nav a:hover,
nav a.active {
    color: #2c3e50;
    background-color: #f8f9fa;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,62,80,0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
}

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

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

.feature-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.approach .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.approach-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Workflow Section */
.workflow {
    padding: 80px 0;
}

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

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

.workflow-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.workflow-step h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.workflow-step p {
    color: #666;
    line-height: 1.7;
}

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

.workflow-image img {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: #fff;
    color: #2c3e50;
}

.cta-section .cta-button:hover {
    background-color: #f8f9fa;
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    text-align: center;
}

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

.page-hero p {
    font-size: 1.125rem;
    color: #666;
}

/* About Page */
.about-intro,
.team-section,
.approach-section {
    padding: 80px 0;
}

.about-intro .container,
.team-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2,
.expertise-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.about-content p,
.expertise-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img,
.team-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values Section */
.values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-card {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Expertise List */
.expertise-list {
    list-style: none;
    margin: 20px 0;
}

.expertise-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.expertise-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

/* Approach Grid */
.approach-section {
    background-color: #f8f9fa;
}

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

.approach-item h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.approach-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.approach-image img {
    max-width: 900px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Page */
.services-overview {
    padding: 60px 0;
}

.services-intro h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.services-intro p {
    color: #666;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 40px 0;
}

.service-block {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

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

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-content ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.service-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-process h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.service-process > .container > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

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

.process-step {
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

.process-step p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

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

.contact-info > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    line-height: 1.7;
}

.contact-image {
    margin-top: 40px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
}

.form-group.checkbox a {
    color: #2c3e50;
}

/* Contact Extra */
.contact-extra {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-extra h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

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

.info-card {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

.info-card p {
    color: #666;
    line-height: 1.7;
}

.contact-cta-image {
    text-align: center;
}

.contact-cta-image img {
    max-width: 900px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-preview {
    padding: 80px 0;
}

.faq-preview h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

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

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

.faq-item h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-page .container {
    max-width: 900px;
}

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

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

.legal-page h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-page ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: #2c3e50;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

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

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

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

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

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

.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;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero .container,
    .approach .container,
    .about-intro .container,
    .team-section .container,
    .service-block,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .features-grid,
    .values-grid,
    .workflow-grid,
    .approach-grid,
    .process-steps,
    .extra-info-grid {
        grid-template-columns: 1fr;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .page-hero h1 {
        font-size: 1.75rem;
    }

    .hero-content p,
    .page-hero p {
        font-size: 1rem;
    }

    .features h2,
    .values h2,
    .workflow h2,
    .service-process h2,
    .faq-preview h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}
