* {
    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: #f4f7fb;
}

.main-nav {
    background: #1a365d;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.3px;
}

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

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4fd1c5;
}

.ad-label {
    font-size: 0.75rem;
    color: #cbd5e0;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 75vh;
    background: #ffffff;
    margin: 0 auto;
    max-width: 1280px;
    margin-top: 30px;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

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

.hero-left p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #2d3748;
}

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

.intro-split {
    display: flex;
    max-width: 1280px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.intro-image {
    flex: 1;
    position: relative;
    background-color: #4a5568;
}

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

.intro-text {
    flex: 1;
    padding: 60px 50px;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.services-preview {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    flex: 0 0 400px;
    position: relative;
    background-color: #e2e8f0;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 20px;
}

.btn-select-service {
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #2c5282;
}

.benefits-split {
    display: flex;
    max-width: 1280px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.benefits-text {
    flex: 1;
    padding: 60px 50px;
}

.benefits-text h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 30px;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: 700;
    font-size: 1.3rem;
}

.benefits-image {
    flex: 1;
    position: relative;
    background-color: #4a5568;
}

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

.form-section {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 30px;
}

.form-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 600;
}

.form-intro p {
    font-size: 1.05rem;
    color: #718096;
}

.main-form {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #2d3748;
    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 {
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #2c5282;
}

.cta-primary {
    display: inline-block;
    background: #3182ce;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #2c5282;
}

.disclaimer-section {
    max-width: 1180px;
    margin: 60px auto;
    padding: 40px;
    background: #fff5e6;
    border-radius: 12px;
    border-left: 5px solid #ed8936;
}

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

.main-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 30px 30px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-column p {
    font-size: 0.95rem;
    color: #cbd5e0;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0aec0;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #38a169;
    color: #ffffff;
}

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

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

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

.page-hero {
    background: #1a365d;
    padding: 80px 30px;
    text-align: center;
    margin-bottom: 40px;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    color: #e2e8f0;
}

.about-split {
    display: flex;
    max-width: 1280px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.about-image {
    flex: 1;
    position: relative;
    background-color: #4a5568;
}

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

.about-text {
    flex: 1;
    padding: 60px 50px;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.values-section {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 30px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card h3 {
    font-size: 1.6rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.timeline-split {
    display: flex;
    max-width: 1280px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.timeline-text {
    flex: 1;
    padding: 60px 50px;
}

.timeline-text h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 40px;
    font-weight: 600;
}

.timeline-item {
    margin-bottom: 30px;
}

.timeline-year {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 8px;
}

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

.timeline-image {
    flex: 1;
    position: relative;
    background-color: #4a5568;
}

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

.cta-section-centered {
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.cta-section-centered h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 600;
}

.cta-section-centered p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 30px;
}

.services-detailed {
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 30px;
}

.service-detail-split {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
    font-size: 1.5rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 24px;
    display: block;
}

.service-detail-image {
    flex: 0 0 480px;
    position: relative;
    background-color: #e2e8f0;
}

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

.contact-split {
    display: flex;
    max-width: 1280px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.contact-info {
    flex: 1;
    padding: 60px 50px;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.contact-image {
    flex: 1;
    position: relative;
    background-color: #4a5568;
}

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

.info-section-centered {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 30px;
}

.info-section-centered h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 30px;
}

.thanks-content {
    background: #ffffff;
    padding: 80px 60px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #38a169;
    margin-bottom: 30px;
}

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

.thanks-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-confirmation {
    background: #e6fffa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 1.05rem;
    color: #234e52;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 30px;
    font-weight: 600;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3182ce;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 16px auto;
}

.step p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background: #3182ce;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #2c5282;
}

.btn-secondary {
    display: inline-block;
    background: #718096;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #4a5568;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 60px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

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

.legal-page h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.legal-page ul li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page a {
    color: #3182ce;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2c5282;
}