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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a73e8;
}

.header-right {
    display: flex;
    gap: 2rem;
}

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

.header-right a:hover,
.header-right a.active {
    color: #1a73e8;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 520px;
}

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

.cta-hero:hover {
    background: #1557b0;
}

.hero-right {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

.intro-block {
    padding: 5rem 8%;
    background: #f8f9fa;
}

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

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.intro-image {
    flex: 0.8;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-section {
    display: flex;
    min-height: 70vh;
}

.trust-left {
    flex: 1;
    overflow: hidden;
}

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

.trust-right {
    flex: 1;
    padding: 4rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-right p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-inline {
    display: inline-block;
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a73e8;
    transition: opacity 0.3s ease;
}

.cta-inline:hover {
    opacity: 0.7;
}

.testimonials {
    padding: 5rem 8%;
    background: #ffffff;
}

.testimonials h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #1a73e8;
    font-weight: 600;
}

.services-pricing {
    padding: 5rem 8%;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-details {
    padding: 1.5rem;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a73e8;
    margin: 1rem 0;
}

.btn-select-service {
    width: 100%;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 0.9rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #1557b0;
}

.why-choose {
    padding: 5rem 8%;
    background: #ffffff;
}

.why-content h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

.why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a73e8;
}

.why-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

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

.process-split {
    display: flex;
}

.process-text {
    flex: 1;
    padding: 3rem 6%;
}

.process-text h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

.cta-form-section {
    padding: 5rem 8%;
    background: #ffffff;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.form-group input[readonly] {
    background: #e5e7eb;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: #1557b0;
}

.final-cta {
    padding: 5rem 8%;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: #e3f2fd;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    background: #ffffff;
    color: #1a73e8;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
}

.footer-split {
    background: #1a1a1a;
    color: #ffffff;
}

.footer-main {
    display: flex;
    gap: 3rem;
    padding: 3rem 8%;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding: 1.5rem 8%;
    border-top: 1px solid #333;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a73e8;
    padding: 1rem 5%;
    text-align: center;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    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;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-cookie-accept {
    background: #1a73e8;
    color: #ffffff;
}

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 5rem 8%;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    text-align: center;
    color: #ffffff;
}

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

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

.about-intro {
    padding: 5rem 8%;
    background: #ffffff;
}

.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section {
    padding: 5rem 8%;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

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

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

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

.team-split {
    display: flex;
}

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

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

.team-text {
    flex: 1;
    padding: 3rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.stats-section {
    padding: 5rem 8%;
    background: #1a73e8;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.stat-item {
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #e3f2fd;
}

.commitment-section {
    padding: 5rem 8%;
    background: #ffffff;
}

.commitment-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.commitment-content > p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-list {
    max-width: 700px;
    margin: 2rem auto;
    list-style: none;
}

.commitment-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
    font-size: 1.5rem;
}

.cta-about {
    padding: 5rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

.cta-button:hover {
    background: #1557b0;
}

.services-intro {
    padding: 3rem 8%;
    background: #ffffff;
}

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

.services-intro-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.services-detailed {
    padding: 3rem 8%;
    background: #f8f9fa;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 0.8;
}

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

.service-detail-content {
    flex: 1.2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1rem;
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    font-size: 1rem;
    color: #2c3e50;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
    font-size: 1.5rem;
}

.service-cta {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.service-cta:hover {
    background: #1557b0;
}

.services-benefits {
    padding: 5rem 8%;
    background: #ffffff;
}

.services-benefits h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.benefit-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a73e8;
}

.benefit-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.services-cta {
    padding: 5rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.contact-main {
    padding: 3rem 8%;
    background: #ffffff;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a73e8;
}

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

.contact-item a {
    color: #1a73e8;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 115, 232, 0.9);
    padding: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-why {
    padding: 5rem 8%;
    background: #f8f9fa;
}

.contact-why h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.why-contact-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.why-contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a73e8;
}

.why-contact-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-cta-section {
    padding: 5rem 8%;
    background: #ffffff;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 5rem 8%;
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-confirmation {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #1a73e8;
    font-weight: 600;
}

.next-steps {
    padding: 5rem 8%;
    background: #ffffff;
}

.next-steps h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

.step-num {
    width: 60px;
    height: 60px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.thanks-info {
    padding: 3rem 8%;
    background: #f8f9fa;
}

.info-box {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-box p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.info-box a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.info-hours {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #6c757d;
}

.thanks-services {
    padding: 5rem 8%;
    background: #ffffff;
    text-align: center;
}

.thanks-services h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-services > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.services-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-link {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-link:hover {
    background: #1557b0;
}

.legal-page {
    padding: 3rem 8%;
    background: #ffffff;
    min-height: 70vh;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-date {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

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

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

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.legal-container a {
    color: #1a73e8;
    text-decoration: none;
}

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

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

    .hero-left {
        padding: 3rem 5%;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-right {
        height: 50vh;
    }

    .intro-content,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

    .trust-section,
    .team-split,
    .process-split {
        flex-direction: column;
    }

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

    .header-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .testimonials-grid,
    .services-split-grid,
    .why-grid,
    .values-grid,
    .stats-grid,
    .benefits-grid,
    .steps-grid {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        padding: 0.8rem 5%;
    }
}
