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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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: 300px;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept {
    background-color: #3182ce;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2c5aa0;
}

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #2d3748;
}

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

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
}

.nav-ad-notice {
    font-size: 12px;
    color: #718096;
    padding: 4px 12px;
    background-color: #f7fafc;
    border-radius: 4px;
    margin: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #2d3748;
}

main {
    min-height: calc(100vh - 70px);
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

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

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

.hero-subtext {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c5aa0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1e4078;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #2c5aa0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c5aa0;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.value-image {
    flex: 0 0 45%;
    background-color: #edf2f7;
}

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

.value-content {
    flex: 1;
    padding: 60px 70px;
    background-color: #ffffff;
}

.value-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

.value-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-intro {
    background-color: #f7fafc;
    padding: 80px 24px;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.services-intro-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 16px;
    color: #1a202c;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #4a5568;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
    margin: 0 24px 24px;
}

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

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content {
    flex: 1;
    padding: 60px 70px;
    background-color: #ffffff;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.trust-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.trust-image {
    flex: 0 0 45%;
    background-color: #edf2f7;
}

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

.form-section {
    background-color: #edf2f7;
    padding: 80px 24px;
}

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 36px;
    line-height: 1.6;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    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: #3182ce;
}

.btn-submit {
    padding: 16px 36px;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4078;
    transform: translateY(-2px);
}

.final-cta {
    background-color: #2d3748;
    padding: 100px 24px;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 18px;
    color: #cbd5e0;
    margin-bottom: 36px;
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 24px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #2d3748;
    border-bottom: 1px solid #2d3748;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #a0aec0;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #718096;
}

.page-header {
    background-color: #2d3748;
    padding: 80px 24px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.header-content p {
    font-size: 18px;
    color: #cbd5e0;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 50%;
    background-color: #edf2f7;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    background-color: #f7fafc;
    padding: 20px 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-label {
    font-size: 16px;
    color: #4a5568;
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    color: #2c5aa0;
    font-weight: 700;
}

.service-note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

.services-cta {
    background-color: #f7fafc;
    padding: 80px 24px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.cta-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 32px;
}

.about-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
    padding: 60px 70px;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 0 0 45%;
    background-color: #edf2f7;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3748;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.infrastructure-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.infrastructure-image {
    flex: 0 0 40%;
    background-color: #edf2f7;
}

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

.infrastructure-content {
    flex: 1;
    padding: 60px 70px;
    background-color: #ffffff;
}

.infrastructure-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

.infrastructure-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.certifications {
    background-color: #f7fafc;
    padding: 80px 24px;
}

.certifications h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

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

.cert-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.8;
}

.experience-section {
    padding: 80px 24px;
    background-color: #2d3748;
}

.experience-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.experience-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #cbd5e0;
}

.team-approach {
    background-color: #ffffff;
    padding: 80px 24px;
}

.team-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.team-text {
    flex: 1;
    padding: 60px 70px;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

.team-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-image {
    flex: 0 0 45%;
    background-color: #edf2f7;
}

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

.about-cta {
    background-color: #2c5aa0;
    padding: 80px 24px;
    text-align: center;
}

.about-cta .cta-content h2 {
    color: #ffffff;
}

.about-cta .cta-content p {
    color: #e2e8f0;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 80px 24px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    background-color: #edf2f7;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 32, 44, 0.85);
    padding: 24px;
}

.map-overlay p {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
}

.contact-additional {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
    background-color: #f7fafc;
}

.contact-additional h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.additional-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.info-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d3748;
    font-weight: 600;
}

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

.contact-faq {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px;
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    background-color: #f7fafc;
    padding: 28px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

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

.thanks-section {
    min-height: calc(100vh - 350px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background-color: #f7fafc;
}

.thanks-content {
    max-width: 700px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.thanks-details p {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.7;
    margin: 0;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 600;
}

.next-steps {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.next-steps li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #2c5aa0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e4078;
}

.btn-secondary {
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c5aa0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #2c5aa0;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

.thanks-additional {
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.thanks-additional p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.legal-intro {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 36px;
    line-height: 1.8;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 6px;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2d3748;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

.legal-content a {
    color: #2c5aa0;
    text-decoration: none;
}

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

.legal-date {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #718096;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .trust-split,
    .service-detail-split,
    .about-intro-split,
    .infrastructure-split,
    .team-content-split,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-split.reverse {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }

    .nav-ad-notice {
        margin: 0;
    }

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

    .value-content,
    .trust-content,
    .service-detail-content,
    .about-content,
    .infrastructure-content,
    .team-text {
        padding: 40px 32px;
    }

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

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

    .experience-stats {
        gap: 40px;
    }
}