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

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

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

.hero-left {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a2332;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.7;
}

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

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

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

.cta-primary:hover {
    background: #1a2332;
}

.cta-secondary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #2980b9;
}

.cta-text {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.cta-text:hover {
    color: #2980b9;
}

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-image {
    flex: 0 0 45%;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-header-split {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
}

.header-left {
    flex: 1;
}

.header-left h2 {
    font-size: 2.8rem;
    color: #1a2332;
    margin-bottom: 1rem;
}

.header-left p {
    font-size: 1.2rem;
    color: #546e7a;
}

.header-right {
    flex: 0 0 auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid #3498db;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-content p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.btn-select:hover {
    background: #2980b9;
}

.testimonial-block {
    padding: 5rem 2rem;
    background: #1a2332;
    color: #ffffff;
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: #b0bec5;
    font-style: normal;
}

.value-split {
    display: flex;
    align-items: stretch;
}

.value-content {
    flex: 1;
    padding: 5rem 4rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.value-content p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.value-image {
    flex: 0 0 45%;
    overflow: hidden;
}

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

.insights-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.insights-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: #1a2332;
}

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

.insight-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2.5rem;
    background: #f8f9fa;
    border-top: 3px solid #3498db;
}

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

.insight-card p {
    color: #546e7a;
    line-height: 1.7;
}

.cta-block-full {
    padding: 5rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-inner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    display: inline-block;
    background: #ffffff;
    color: #3498db;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.form-intro p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    font-size: 1.05rem;
    color: #2c3e50;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid #e0e6ed;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a2332;
}

.final-trust {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
}

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

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.trust-content p {
    font-size: 1.15rem;
    color: #546e7a;
    line-height: 1.7;
}

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

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2c3e50;
    text-align: center;
    color: #b0bec5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 200;
    display: none;
}

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

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

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

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

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

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

.btn-accept:hover {
    background: #2980b9;
}

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

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: #e0e6ed;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.about-content p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.values-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: #1a2332;
    text-align: center;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2.5rem;
    background: #ffffff;
    border-left: 4px solid #3498db;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.value-item p {
    color: #546e7a;
    line-height: 1.7;
}

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

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

.team-image {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 8px;
}

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

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.team-content p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.credentials-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #546e7a;
    font-size: 1.1rem;
}

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

.stats-section {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.stats-section h2 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

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

.stat-item p {
    color: #e0e6ed;
    font-size: 1.1rem;
}

.approach-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.approach-content p {
    font-size: 1.15rem;
    color: #546e7a;
    line-height: 1.7;
}

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

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    flex-shrink: 0;
    width: 80px;
}

.step-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
    color: #1a2332;
}

.step-item p {
    color: #546e7a;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cta-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.cta-content p {
    font-size: 1.15rem;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

.service-detail-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-detail-split {
    display: flex;
    align-items: stretch;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.service-detail-content p {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-detail-content ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #546e7a;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-duration {
    font-style: italic;
    color: #7f8c8d;
}

.service-detail-aside {
    flex: 0 0 380px;
    background: #f8f9fa;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #3498db;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #546e7a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.btn-select-service:hover {
    background: #2980b9;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-note {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.note-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.note-content p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.contact-info-side > p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-item p {
    color: #546e7a;
    line-height: 1.7;
}

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

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

.contact-note {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    color: #546e7a;
    line-height: 1.7;
    margin: 0;
}

.contact-form-side {
    flex: 1;
}

.form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-section {
    margin: 4rem 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.thanks-next-steps {
    margin: 4rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a2332;
    text-align: center;
}

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

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

.step-num {
    width: 50px;
    height: 50px;
    background: #3498db;
    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 h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.step-content p {
    color: #546e7a;
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1a2332;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2c3e50;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c3e50;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.thanks-resources {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.resources-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.resources-content > p {
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
}

.resource-links {
    display: flex;
    gap: 2rem;
}

.resource-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #3498db;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: #1a2332;
}

.resource-card p {
    color: #546e7a;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

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

.updated-date {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    color: #34495e;
}

.legal-container p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-container ul li {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e0e6ed;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e6ed;
    color: #546e7a;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .value-split,
    .form-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split-section {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-content,
    .value-content,
    .form-intro,
    .about-content,
    .team-content,
    .service-detail-content,
    .contact-info-side {
        padding: 3rem 2rem;
    }

    .hero-right,
    .intro-image,
    .value-image,
    .about-image,
    .team-image {
        flex: 0 0 400px;
        min-height: 400px;
    }

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

    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        flex-wrap: wrap;
    }

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

    .resource-links {
        flex-direction: column;
    }

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

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

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

@media (max-width: 480px) {
    .hero-left,
    .intro-content,
    .value-content {
        padding: 2rem 1.5rem;
    }

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

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.85rem;
    }
}
