* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

nav a:hover {
    color: #5a67d8;
}

main {
    min-height: 70vh;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5568;
    line-height: 1.7;
}

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

.cta-button {
    display: inline-block;
    background-color: #5a67d8;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #4c51bf;
    transform: translateY(-2px);
}

.features {
    padding: 80px 0;
}

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

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

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

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

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

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

.showcase {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.showcase-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.showcase-text p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.cta-content {
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a202c;
}

.page-header p {
    font-size: 18px;
    color: #4a5568;
}

.content-section {
    padding: 80px 0;
}

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

.content-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.content-text p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

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

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

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

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

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

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

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

.team-text p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

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

.approach-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.approach-text p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.services-intro {
    padding: 80px 0;
}

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

.intro-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.intro-text p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
}

.service-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-item.reverse .service-content {
    order: 2;
}

.service-item.reverse .service-image {
    order: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-content p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.service-content ul {
    list-style: none;
    padding-left: 0;
}

.service-content ul li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    color: #4a5568;
}

.service-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #5a67d8;
    font-weight: bold;
}

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

.additional-services {
    padding: 80px 0;
}

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

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

.additional-card {
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3748;
}

.additional-card p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-content {
    padding: 80px 0;
}

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

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
}

.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: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    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: #5a67d8;
}

.submit-button {
    background-color: #5a67d8;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #4c51bf;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

.info-block p {
    color: #4a5568;
    line-height: 1.7;
}

.info-image {
    margin-top: 30px;
}

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

.map-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
    text-align: center;
}

.map-section > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #4a5568;
    line-height: 1.7;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.map-card {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.map-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

.map-card p {
    color: #4a5568;
}

.contact-image-section {
    padding: 80px 0;
}

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

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

.legal-content {
    padding: 80px 0;
}

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

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

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

.legal-text p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-text ul li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

footer {
    background-color: #2d3748;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
}

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

@media (max-width: 968px) {
    .hero .container,
    .showcase-content,
    .content-layout,
    .team-content,
    .approach-layout,
    .intro-layout,
    .service-item,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-item.reverse .service-content,
    .service-item.reverse .service-image {
        order: 0;
    }

    .features-grid,
    .values-grid,
    .additional-grid,
    .map-info,
    .image-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    nav {
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    nav {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }

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

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