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

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

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

/* Header */
header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #1a1a1a;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* Visual Section */
.visual-section {
    padding: 80px 0;
    background: #f5f7fa;
}

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

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.column-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.column-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

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

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

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

.stat-label {
    font-size: 16px;
    color: #ccc;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #667eea;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

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

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* Team Section */
.team-section {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

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

.team-text p {
    margin-bottom: 15px;
    color: #555;
}

/* Approach Detail Section */
.approach-detail-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.approach-detail-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.approach-step {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
}

.approach-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.approach-step p {
    font-size: 14px;
    color: #666;
}

/* Final Image Section */
.final-image-section {
    padding: 60px 0;
}

.final-image-section img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Services Pages */
.services-intro {
    padding: 80px 0;
}

.services-list {
    padding: 80px 0;
    background: #f5f7fa;
}

.services-list h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 8px 0;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.service-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #ffffff;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.process-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    padding: 25px;
    background: #f5f7fa;
    border-radius: 8px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.process-step p {
    color: #666;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
}

/* Technologies Section */
.technologies-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Contact Pages */
.contact-main {
    padding: 80px 0;
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-form-wrapper p {
    margin-bottom: 30px;
    color: #666;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-info-item p {
    color: #666;
}

/* Contact Visual */
.contact-visual {
    padding: 60px 0;
    background: #f5f7fa;
}

.contact-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

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

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    padding: 30px;
    background: #f5f7fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* Map Placeholder */
.map-placeholder {
    padding: 60px 0;
}

.map-box {
    background: #e0e0e0;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    color: #666;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

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

.legal-text ul {
    margin-bottom: 15px;
    padding-left: 30px;
}

.legal-text ul li {
    margin-bottom: 8px;
    color: #555;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container,
    .two-column,
    .team-content,
    .process-visual {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cards,
    .values-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-images {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .feature-grid,
    .benefits-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 16px;
    }

    section {
        padding: 40px 0 !important;
    }
}
