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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.ad-notice {
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #6c757d;
    border: 1px solid #e9ecef;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
}

.mobile-menu a {
    padding: 1rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #e9ecef;
}

.mobile-menu.active {
    display: flex;
}

.ad-notice-mobile {
    padding: 1rem;
    background: #f8f9fa;
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    margin-top: 0.5rem;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.hero-text-container {
    max-width: 600px;
}

.hero-split h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background: #e9ecef;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.intro-section {
    padding: 6rem 0;
    background: #ffffff;
}

.intro-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image {
    flex: 1;
    background: #e9ecef;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    line-height: 1.3;
}

.intro-content p {
    margin-bottom: 1.2rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.features-cards {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cards-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    background: #e9ecef;
    height: 200px;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
    color: #1a252f;
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.services-overview {
    padding: 6rem 0;
    background: #ffffff;
}

.services-split {
    display: flex;
    gap: 3rem;
}

.services-intro {
    flex: 1;
}

.services-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.services-intro p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.services-list-form {
    flex: 1.2;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-form h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #1a252f;
}

.service-option {
    margin-bottom: 1rem;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option label:hover {
    border-color: #3498db;
    background: #f0f8ff;
}

.service-option input[type="radio"]:checked + label {
    border-color: #3498db;
    background: #e8f4f8;
}

.service-name {
    font-weight: 600;
    color: #2c3e50;
}

.service-price {
    font-weight: 700;
    color: #3498db;
    font-size: 1.1rem;
}

.form-row {
    margin-top: 1.5rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-row input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-row label {
    font-size: 0.9rem;
    color: #4a5568;
}

.checkbox-row label a {
    color: #3498db;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1.5rem;
}

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

.case-study {
    padding: 6rem 0;
    background: #f8f9fa;
}

.case-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.case-text {
    flex: 1.3;
}

.case-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.case-text p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

.case-visual {
    flex: 1;
    background: #e9ecef;
}

.case-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

blockquote p {
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

cite {
    font-style: normal;
    color: #6c757d;
    font-size: 0.95rem;
}

.tech-section {
    padding: 6rem 0;
    background: #ffffff;
}

.tech-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tech-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.tech-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.tech-item p {
    color: #4a5568;
    line-height: 1.6;
}

.compliance-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.compliance-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
}

.compliance-box h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.disclaimer-text {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.7;
}

.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-content {
    padding: 5rem 0;
}

.content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.content-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.content-right p {
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.mission-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.mission-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.team-intro {
    margin-bottom: 3rem;
}

.team-intro p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.approach-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.approach-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

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

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.certification-section {
    padding: 5rem 0;
}

.certification-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.certification-section p {
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.services-detailed {
    padding: 5rem 0;
}

.service-block {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background: #e9ecef;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-info {
    flex: 1.2;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-price-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    color: #4a5568;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 1.5rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-section {
    padding: 5rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.contact-block {
    margin-bottom: 2.5rem;
}

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

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

.contact-visual {
    flex: 1;
    background: #e9ecef;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.map-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.map-section p {
    color: #4a5568;
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a252f;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 0;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.thanks-message {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.service-info-box {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: none;
}

.service-info-box.show {
    display: block;
}

.service-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-info-box p {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
}

.next-steps {
    text-align: left;
    margin: 3rem auto;
    max-width: 600px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: #6c757d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-reminder p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.legal-page {
    padding: 5rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.update-date {
    color: #6c757d;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-page strong {
    color: #2c3e50;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table thead {
    background: #f8f9fa;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    color: #2c3e50;
    font-weight: 600;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    color: #4a5568;
}

.footer {
    background: #1a252f;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #b8c5d3;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c3e50;
    color: #b8c5d3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

#cookie-accept {
    background: #3498db;
    color: #ffffff;
}

#cookie-accept:hover {
    background: #2980b9;
}

#cookie-reject {
    background: #6c757d;
    color: #ffffff;
}

#cookie-reject:hover {
    background: #5a6268;
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-right {
        min-height: 400px;
    }

    .hero-split h1 {
        font-size: 2rem;
    }

    .intro-layout,
    .content-split,
    .case-content,
    .approach-layout,
    .services-split,
    .contact-layout {
        flex-direction: column;
    }

    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-split h1 {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .intro-content h2,
    .case-text h2 {
        font-size: 1.6rem;
    }

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

    .team-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}