* {
    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: #2c3e50;
    background: #ffffff;
}

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

/* Header */
header {
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

nav {
    display: flex;
    gap: 2rem;
}

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

nav a:hover {
    color: #2c3e50;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 100%);
}

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

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

.hero-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1a252f;
}

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

/* Features Section */
.features {
    padding: 5rem 0;
}

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

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

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    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 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Image Section */
.image-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

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

/* Approach Section */
.approach {
    padding: 5rem 0;
    background: #ffffff;
}

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

.approach p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 100%);
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.content-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

/* Values Section */
.values {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #5a6c7d;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

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

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

.team-images {
    display: grid;
    gap: 1.5rem;
}

.team-images img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-intro {
    padding: 4rem 0;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

/* Service Cards */
.services-list {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

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

.service-card li {
    color: #5a6c7d;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c3e50;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
}

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

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.process-step {
    margin-bottom: 2rem;
}

.process-step h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e8ecef;
    margin-bottom: 2rem;
}

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

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

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form h2,
.contact-info h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e8ecef;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: #2c3e50;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #1a252f;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.info-block p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* Response Process */
.response-process {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

.process-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.process-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-item p {
    color: #5a6c7d;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.map-text h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-text p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0 5rem;
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
}

.content-text h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-text h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #b8c5d0;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #b8c5d0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #b8c5d0;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        gap: 1rem;
    }

    .hero .container,
    .content-layout,
    .team-content,
    .intro-layout,
    .process-layout,
    .contact-layout,
    .map-content {
        grid-template-columns: 1fr;
    }

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

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

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

    header .container {
        flex-direction: column;
        gap: 1rem;
    }
}
