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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.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: 280px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-cookie-accept {
    background: #2ecc71;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #27ae60;
}

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

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

.nav-main {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(44, 62, 80, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2ecc71;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-card p {
    color: #7f8c8d;
    line-height: 1.7;
}

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

.services-preview h2,
.services-full h2,
.about-intro h2,
.values-section h2,
.approach-section h2,
.team-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.services-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: calc(50% - 15px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-card-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #34495e;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.price-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-service:hover {
    background: #2980b9;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

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

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.approach-content {
    flex: 1;
    min-width: 320px;
}

.approach-content h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 24px;
}

.approach-content p {
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-arrow {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(6px);
}

.approach-layout img {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #ecf0f1;
}

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
    text-align: center;
}

.form-card p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

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

.btn-submit {
    padding: 14px 32px;
    background: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background: #ecf0f1;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

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

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

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

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

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

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

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-layout img {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.about-content {
    flex: 1;
    min-width: 320px;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.about-content p {
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.process-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.process-card {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.process-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-card p {
    color: #7f8c8d;
    line-height: 1.7;
}

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

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.tech-item {
    padding: 16px 28px;
    background: #ecf0f1;
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.cta-card {
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

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

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 320px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-detail p {
    color: #7f8c8d;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    min-width: 320px;
}

.contact-map img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.thanks-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-card p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-next {
    margin-top: 32px;
    margin-bottom: 32px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.legal-text h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-text h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-text p {
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-text ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-text ul li {
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #7f8c8d;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .hero-section {
        height: 500px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }

    .service-card {
        max-width: 100%;
    }

    .form-card {
        padding: 30px 20px;
    }

    .thanks-card {
        padding: 40px 24px;
    }

    .approach-layout,
    .about-layout,
    .contact-layout {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}