/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

/* Header */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    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-top: 20px;
    padding-bottom: 20px;
}

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

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

nav a {
    color: #5a6c7d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover {
    color: #3498db;
}

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

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

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

.hero-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

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

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

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

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

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.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-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.column-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.column-text p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Analytics Section */
.analytics-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #3498db;
}

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

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

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

.page-header h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header .subtitle {
    font-size: 1.15rem;
    color: #5a6c7d;
}

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

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.team-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.expertise-item h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.expertise-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

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

.team-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Services Overview */
.services-overview {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.intro-content h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail.reverse {
    background-color: #f8f9fa;
}

.service-detail h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.service-detail p {
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-top: 24px;
}

.service-features li {
    color: #5a6c7d;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 600;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.process-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.process-step {
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
    opacity: 0.8;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Contact Layout */
.contact-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.contact-info h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-info > p {
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

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

.contact-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.contact-item .detail {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 4px;
}

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

.contact-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-section h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 32px;
    font-weight: 600;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d9e0;
    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: #3498db;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.info-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.map-section h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.map-section > .container > p {
    text-align: center;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.location-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

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

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

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-text ul li {
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

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

    .column-text h2,
    .service-detail h2 {
        font-size: 1.8rem;
    }

    nav {
        gap: 20px;
    }

    .feature-grid,
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero {
        padding: 40px 0;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .features,
    .content-section,
    .values-section,
    .team-section,
    .services-overview,
    .service-detail,
    .additional-services,
    .process-section,
    .contact-content,
    .info-section,
    .map-section,
    .faq-section {
        padding: 40px 0;
    }
}
