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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

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

.center {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navigation {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a4d6f;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-links a:hover {
    color: #1a4d6f;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    border-left: 1px solid #ecf0f1;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #546e7a;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #1a4d6f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #153f5a;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #1a4d6f;
    border: 2px solid #1a4d6f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a4d6f;
    color: #ffffff;
}

.intro-section {
    padding: 80px 20px;
    background: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a4d6f;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
}

.split-layout {
    display: flex;
    align-items: stretch;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a4d6f;
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #546e7a;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.link-arrow {
    color: #1a4d6f;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    color: #153f5a;
}

.benefits-cards {
    padding: 80px 20px;
    background: #ecf0f1;
}

.cards-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.technology-section {
    background: #f8f9fa;
}

.cta-section {
    padding: 100px 20px;
    background: #1a4d6f;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.process-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.process-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
}

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a4d6f;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
}

.form-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.form-wrapper {
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a4d6f;
}

.form-wrapper p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #546e7a;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    font-size: 15px;
    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: #1a4d6f;
}

.btn-submit {
    padding: 15px 40px;
    background: #1a4d6f;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #153f5a;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 20px;
}

.references h5 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ffffff;
}

.references p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.references a {
    color: #3498db;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #1a4d6f;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #546e7a;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-card .price-note {
    font-size: 14px;
    color: #7f8c8d;
}

.page-header {
    background: #1a4d6f;
    color: #ffffff;
    padding: 80px 20px 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.content-section {
    padding: 60px 20px;
    background: #ffffff;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a4d6f;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c3e50;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #546e7a;
}

.team-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 0 300px;
    text-align: center;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background-color: #e8f4f8;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #1a4d6f;
}

.team-member .role {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a4d6f;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #546e7a;
}

.contact-info strong {
    color: #2c3e50;
}

.thanks-message {
    text-align: center;
    padding: 100px 20px;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #546e7a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 50px 30px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 50px 30px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .process-grid {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 30px;
    }
}