/* Reset and Base Styles */
* {
    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-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px 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: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-right {
    background-color: #f8f9fa;
    overflow: hidden;
}

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

/* Split Sections */
.intro-split,
.trust-split,
.approach-split,
.technology-split {
    display: flex;
    align-items: center;
}

.intro-split,
.approach-split,
.technology-split {
    padding: 5rem 0;
}

.trust-split {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.split-content {
    padding: 4rem;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.8;
}

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

/* Services Section */
.services-preview {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-info p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.7;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.875rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* CTA Sections */
.cta-inline {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
}

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

.cta-inline-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cta-primary,
.cta-secondary,
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.cta-button {
    background-color: #3498db;
    color: #ffffff;
}

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

/* Trust Section */
.trust-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #5a6c7d;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 700;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #5a6c7d;
}

/* Approach Steps */
.approach-steps {
    margin-top: 2rem;
}

.step {
    margin-bottom: 2rem;
}

.step h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Technology List */
.tech-list {
    margin-top: 1.5rem;
}

.tech-list ul {
    list-style: none;
}

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

.tech-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 1rem;
    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 {
    width: 100%;
    padding: 1rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* About Page Sections */
.about-split {
    padding: 6rem 0;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.team-split {
    padding: 6rem 0;
}

.expertise-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.expertise-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 700;
}

.expertise-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.expertise-content {
    flex: 1;
    min-width: 300px;
}

.expertise-item {
    margin-bottom: 2.5rem;
}

.expertise-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.expertise-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.certifications {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.certifications h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.certifications-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #5a6c7d;
}

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

.cert-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.cert-list li {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 1.05rem;
    color: #2c3e50;
    border: 2px solid #e1e8ed;
}

.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Page */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #27ae60;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

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

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.process-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 700;
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.process-step p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Contact Page */
.contact-info-section {
    padding: 4rem 2rem;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.contact-details,
.contact-map {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-details > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-item a {
    color: #3498db;
}

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

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 1rem;
    color: #2c3e50;
    margin: 0;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.location-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.location-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.location-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #5a6c7d;
}

.locations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.location-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.location-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.location-note {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 1.05rem;
    color: #5a6c7d;
    font-style: italic;
}

.inquiry-types {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.inquiry-types h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 700;
}

.inquiry-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.inquiry-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.inquiry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.inquiry-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.response-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.response-content h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 700;
}

.response-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
    font-weight: 600;
}

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

/* Thanks Page */
.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thanks-details {
    margin-bottom: 3rem;
}

.service-confirmation {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e1e8ed;
}

.service-confirmation h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-name {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-note {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.next-steps .step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

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

.next-steps .step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.next-steps .step p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-info {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.thanks-info p {
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.additional-resources {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.resources-container h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 700;
}

.resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.resource-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-card a {
    color: #3498db;
    font-weight: 600;
}

.resource-card a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.effective-date {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .intro-split,
    .trust-split,
    .approach-split,
    .technology-split,
    .about-split,
    .team-split,
    .service-detail {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .split-content h2 {
        font-size: 2rem;
    }

    .section-header h2,
    .testimonials h2,
    .values-section h2,
    .expertise-section h2,
    .certifications h2,
    .process-section h2,
    .location-section h2,
    .inquiry-types h2,
    .response-content h2,
    .resources-container h2 {
        font-size: 2.25rem;
    }

    .page-hero-content h1,
    .thanks-container h1,
    .legal-container h1 {
        font-size: 2.5rem;
    }

    .cta-inline-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }

    .contact-split,
    .expertise-split {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .legal-container {
        padding: 2.5rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero {
        padding: 5rem 1.5rem 3rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}