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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8a75d;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --background-light: #ffffff;
    --background-dark: #f9f9f9;
    --accent-color: #d97742;
    --success-color: #28a745;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--text-light);
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.navbar {
    background-color: var(--background-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    padding: 80px 40px;
    background-color: var(--background-dark);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1e4459;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
}

.intro-reverse {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-visual {
    flex: 1;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.intro-copy {
    flex: 1;
}

.intro-copy h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-copy p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.problem-section {
    padding: 80px 40px;
    background-color: var(--background-dark);
}

.problem-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.problem-image {
    flex: 1;
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.insight-split {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.benefit-list {
    list-style: none;
    margin: 30px 0;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

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

.services-preview {
    padding: 80px 40px;
    background-color: var(--background-dark);
}

.services-header {
    max-width: 1400px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.select-service {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #1e4459;
}

.trust-section {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.trust-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.testimonial {
    margin: 30px 0;
    padding: 25px;
    background-color: var(--background-dark);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.testimonial blockquote {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-section {
    padding: 80px 40px;
    background-color: var(--background-dark);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    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: var(--primary-color);
}

.btn-submit {
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4459;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 95, 124, 0.3);
}

.final-cta {
    padding: 100px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

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

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: #1a1a1a;
    color: var(--text-light);
    padding: 60px 40px 20px;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #c46738;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.about-hero {
    padding: 100px 40px;
    background-color: var(--background-dark);
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-hero-text p {
    font-size: 1.3rem;
    color: #555;
}

.about-hero-image {
    flex: 1;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mission-split {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-visual {
    flex: 1;
}

.mission-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.mission-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.values-section {
    padding: 80px 40px;
    background-color: var(--background-dark);
}

.values-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1.05rem;
    color: #555;
}

.approach-split {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.approach-list {
    list-style: none;
    margin: 25px 0;
}

.approach-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #555;
}

.approach-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.team-section {
    padding: 80px 40px;
    background-color: var(--background-dark);
}

.team-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.team-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-highlight {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.team-highlight img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.team-bio h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-bio p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.why-us-split {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-us-image {
    flex: 1;
}

.why-us-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.why-us-text {
    flex: 1;
}

.why-us-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.why-us-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.commitment-section {
    padding: 80px 40px;
    background-color: var(--background-dark);
}

.commitment-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.commitment-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.commitment-list {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.commitment-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid var(--border-color);
}

.commitment-list li:last-child {
    border-bottom: none;
}

.commitment-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.cta-about {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.cta-about-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cta-about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-about-text p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #555;
}

.cta-about-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary-large {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary-large:hover {
    background-color: #1e4459;
    transform: translateY(-2px);
}

.btn-secondary-large {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary-large:hover {
    background-color: #d4954d;
    transform: translateY(-2px);
}

.services-hero {
    padding: 100px 40px;
    background-color: var(--background-dark);
    text-align: center;
}

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

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-hero-content p {
    font-size: 1.3rem;
    color: #555;
}

.service-detail-split,
.service-detail-reverse {
    padding: 80px 40px;
}

.service-detail-split {
    background-color: var(--background-light);
}

.service-detail-reverse {
    background-color: var(--background-dark);
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #555;
}

.service-detail-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.comparison-section {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.comparison-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-row {
    display: flex;
    align-items: center;
    background-color: var(--background-dark);
    padding: 25px;
    border-radius: 8px;
    gap: 30px;
}

.comparison-label {
    flex: 0 0 250px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.comparison-recommendation {
    flex: 1;
    font-size: 1.05rem;
    color: #555;
}

.contact-hero {
    padding: 100px 40px;
    background-color: var(--background-dark);
    text-align: center;
}

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

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: #555;
}

.contact-split {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 35px;
    color: var(--text-dark);
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--secondary-color);
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--background-dark);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.contact-note p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-section {
    padding: 80px 40px;
    background-color: var(--background-dark);
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.visit-section {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.visit-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.visit-text {
    flex: 1;
}

.visit-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.visit-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.visit-image {
    flex: 1;
}

.visit-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-cta {
    padding: 80px 40px;
    background-color: var(--background-dark);
    text-align: center;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #555;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #1e4459;
    transform: translateY(-2px);
}

.thanks-hero {
    padding: 100px 40px;
    background-color: var(--background-dark);
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--success-color);
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 20px;
}

.service-confirmation {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 20px;
}

.selected-service {
    padding: 15px;
    background-color: var(--background-light);
    border-radius: 5px;
    display: inline-block;
}

.thanks-details {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.thanks-details-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-details-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.thanks-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.thanks-step {
    flex: 1 1 300px;
    max-width: 350px;
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.thanks-meanwhile {
    padding: 80px 40px;
    background-color: var(--background-dark);
}

.meanwhile-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.meanwhile-content {
    flex: 1;
}

.meanwhile-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.meanwhile-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.meanwhile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meanwhile-link {
    display: block;
    padding: 25px;
    background-color: var(--background-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.meanwhile-link:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.meanwhile-link h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.meanwhile-link p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.meanwhile-image {
    flex: 1;
}

.meanwhile-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.thanks-support {
    padding: 80px 40px;
    background-color: var(--background-light);
    text-align: center;
}

.thanks-support-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-support-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-support-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.btn-support {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-support:hover {
    background-color: #d4954d;
    transform: translateY(-2px);
}

.legal-hero {
    padding: 80px 40px;
    background-color: var(--background-dark);
    text-align: center;
}

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

.legal-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 1rem;
    color: #777;
}

.legal-content {
    padding: 60px 40px 80px;
    background-color: var(--background-light);
}

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

.legal-text h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-text h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-text h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-text p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-text ul li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: var(--secondary-color);
}

.legal-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: var(--shadow);
}

.cookies-table thead {
    background-color: var(--primary-color);
    color: white;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
    font-size: 1.05rem;
}

.cookies-table td {
    font-size: 1rem;
    color: #555;
}

.cookies-table tbody tr:hover {
    background-color: var(--background-dark);
}

@media (max-width: 1024px) {
    .hero-content,
    .intro-container,
    .problem-wrapper,
    .insight-container,
    .trust-wrapper,
    .about-hero-content,
    .mission-container,
    .approach-container,
    .why-us-container,
    .service-detail-container,
    .contact-container,
    .visit-wrapper,
    .meanwhile-wrapper {
        flex-direction: column;
    }

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

    .team-highlight {
        flex-direction: column;
        text-align: center;
    }

    .team-highlight img {
        width: 100%;
        max-width: 300px;
    }

    .comparison-row {
        flex-direction: column;
        gap: 15px;
    }

    .comparison-label {
        flex: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1,
    .about-hero-text h1 {
        font-size: 2.2rem;
    }

    .services-header h2,
    .values-wrapper h2,
    .team-wrapper h2,
    .comparison-wrapper h2,
    .thanks-details-wrapper h2 {
        font-size: 2rem;
    }

    .intro-copy h2,
    .problem-text h2,
    .insight-content h2,
    .trust-text h2,
    .mission-text h2,
    .approach-text h2,
    .why-us-text h2,
    .service-detail-content h2,
    .contact-info h2,
    .visit-text h2 {
        font-size: 1.8rem;
    }

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

    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .form-container {
        padding: 30px 20px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .cta-about-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 300px;
    }

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

    .cookies-table {
        font-size: 0.9rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px 20px;
    }

    .hero-split,
    .intro-reverse,
    .problem-section,
    .insight-split,
    .services-preview,
    .trust-section,
    .form-section,
    .final-cta {
        padding: 50px 20px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-primary,
    .cta-large {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .service-card {
        padding: 25px;
    }

    .price {
        font-size: 1.7rem;
    }

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