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

.main-nav {
    background-color: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

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

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

.ad-notice {
    background-color: rgba(255,255,255,0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #e0e0e0;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 1;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.intro-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

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

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

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.service-card-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-visual {
    flex: 0 0 40%;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.service-details p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-details ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.service-select {
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.service-select:hover {
    background-color: #2c2c4e;
    transform: translateY(-2px);
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.form-container {
    flex: 1;
}

.main-form {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

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

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

.trust-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.trust-content blockquote {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #4a90e2;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.trust-content blockquote p {
    font-size: 1.1rem;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.trust-content blockquote cite {
    font-style: normal;
    font-weight: 600;
    color: #4a5568;
}

.trust-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

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

.main-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    line-height: 1.7;
    color: #b8b8b8;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b8b8b8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #b8b8b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
}

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

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

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

.cookie-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #357abd;
}

.cookie-reject {
    background-color: transparent;
    color: #e0e0e0;
    border: 2px solid #e0e0e0;
}

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

.about-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-hero-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

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

.mission-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.mission-image {
    flex: 0 0 35%;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.mission-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-split {
    display: flex;
    gap: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-image {
    flex: 0 0 40%;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.team-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.role {
    font-size: 1.1rem;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.values-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.values-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step-split {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.process-step-split.reverse {
    flex-direction: row-reverse;
}

.step-number {
    flex: 0 0 80px;
    height: 80px;
    background-color: #4a90e2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.services-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.services-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 800;
}

.services-hero-text p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.services-hero-visual {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 2rem 0 1.5rem;
}

.cta-service {
    display: inline-block;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-service:hover {
    background-color: #2c2c4e;
    transform: translateY(-2px);
}

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

.comparison-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
}

.comparison-table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background-color: #ffffff;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table thead {
    background-color: #1a1a2e;
    color: #ffffff;
}

.comparison-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}

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

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.addons-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.addons-content {
    flex: 1;
}

.addons-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.addon-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.addon-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.addons-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.contact-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 800;
}

.contact-hero-text p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-hero-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-info-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.contact-map {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

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

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

.response-times h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
}

.response-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.response-card-split {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.response-icon {
    flex: 0 0 60px;
    color: #4a90e2;
}

.response-text {
    flex: 1;
}

.response-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #1a1a2e;
    font-weight: 700;
}

.response-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.faq-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.faq-intro {
    flex: 0 0 35%;
}

.faq-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.faq-list {
    flex: 1;
}

.faq-item {
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.location-info {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.location-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.location-text {
    flex: 1;
}

.location-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.location-visual {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

.location-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-item .step-number {
    flex: 0 0 50px;
    height: 50px;
    background-color: #4a90e2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-item .step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

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

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

.btn-primary {
    background-color: #4a90e2;
    color: #ffffff;
}

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

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

.btn-secondary:hover {
    background-color: #4a90e2;
    color: #ffffff;
    transform: translateY(-2px);
}

.additional-info-split {
    display: flex;
    max-width: 1200px;
    margin: 6rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.info-text ul {
    list-style: none;
}

.info-text ul li {
    margin-bottom: 0.7rem;
}

.info-text ul li a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text ul li a:hover {
    color: #357abd;
    text-decoration: underline;
}

.info-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 800;
}

.last-updated {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
    font-weight: 700;
}

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

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #4a90e2;
    text-decoration: none;
}

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

.retention-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.retention-table th,
.cookie-table th {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.retention-table td,
.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #4a5568;
}

.retention-table tr:last-child td,
.cookie-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-split,
    .trust-split,
    .about-hero-split,
    .mission-split,
    .team-split,
    .values-split,
    .services-hero-split,
    .service-detail-split,
    .addons-split,
    .contact-hero-split,
    .contact-info-split,
    .faq-split,
    .location-split,
    .additional-info-split {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-left h1,
    .about-hero-content h1,
    .services-hero-text h1,
    .contact-hero-text h1 {
        font-size: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}