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

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

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

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    position: relative;
}

.nav-right a:hover {
    color: #1a1a1a;
}

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

.nav-right a:hover::after {
    width: 100%;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5% 4rem 10%;
}

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

.hero-left p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.05rem;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1a1a1a;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    font-size: 1.05rem;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-inline {
    display: inline-block;
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 3px;
}

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

.insights-section {
    display: flex;
    padding: 6rem 5%;
}

.insight-left {
    flex: 1;
    padding-right: 4rem;
}

.insight-left img {
    width: 100%;
    border-radius: 8px;
}

.insight-right {
    flex: 1;
    padding-left: 2rem;
}

.insight-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.insight-right p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.trend-cards {
    padding: 6rem 10%;
    background-color: #f8f8f8;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trend-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trend-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trend-card p {
    color: #4a4a4a;
    font-size: 1.05rem;
}

.problem-split {
    display: flex;
    padding: 6rem 5%;
    align-items: center;
}

.problem-left {
    flex: 1;
    padding-right: 4rem;
}

.problem-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.problem-left p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.problem-right {
    flex: 1;
}

.problem-right img {
    width: 100%;
    border-radius: 8px;
}

.approach-section {
    padding: 6rem 10%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.approach-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.approach-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1.5rem);
}

.approach-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.approach-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-item p {
    color: #cccccc;
    font-size: 1.05rem;
}

.services-preview {
    padding: 6rem 10%;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #f8f8f8;
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: #4a4a4a;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.select-service {
    padding: 0.9rem 1.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-center {
    text-align: center;
}

.testimonials-split {
    display: flex;
    padding: 6rem 5%;
    background-color: #f8f8f8;
}

.testimonial-left {
    flex: 1;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.author {
    display: block;
    font-size: 0.95rem;
    color: #666666;
    font-style: normal;
}

.testimonial-right {
    flex: 1;
}

.testimonial-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.stats-section {
    padding: 6rem 10%;
}

.stats-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.stat-item {
    flex: 1 1 calc(25% - 2.5rem);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.consultation-form {
    display: flex;
    padding: 6rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.form-split-left {
    flex: 1;
    padding-right: 4rem;
}

.form-split-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-split-left p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.form-split-right {
    flex: 1;
}

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

#contact-form input,
#contact-form select,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid #444444;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #2a2a2a;
    color: #ffffff;
    font-family: inherit;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #888888;
}

#contact-form select {
    cursor: pointer;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: #aaaaaa;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.8rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    font-size: 1rem;
}

.sticky-cta a:hover {
    background-color: #333333;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 101;
    display: none;
}

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

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

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

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

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

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

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

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

.btn-reject:hover {
    background-color: #333333;
}

.page-hero {
    padding: 6rem 10% 4rem;
    text-align: center;
    background-color: #f8f8f8;
}

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

.page-hero p {
    font-size: 1.25rem;
    color: #4a4a4a;
}

.about-story-split {
    display: flex;
    padding: 6rem 5%;
    align-items: center;
}

.story-left {
    flex: 1;
    padding-right: 4rem;
}

.story-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-left p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.story-right {
    flex: 1;
}

.story-right img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    padding: 6rem 10%;
    background-color: #f8f8f8;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #4a4a4a;
    font-size: 1.05rem;
}

.team-split {
    display: flex;
    padding: 6rem 5%;
    align-items: center;
}

.team-left {
    flex: 1;
    padding-right: 4rem;
}

.team-left img {
    width: 100%;
    border-radius: 8px;
}

.team-right {
    flex: 1;
    padding-left: 2rem;
}

.team-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-right p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.methodology-section {
    padding: 6rem 10%;
    background-color: #f8f8f8;
}

.methodology-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.methodology-content > p {
    font-size: 1.15rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.method-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.method-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.method-item p {
    color: #4a4a4a;
    font-size: 1.05rem;
}

.recognition-split {
    display: flex;
    padding: 6rem 5%;
    align-items: center;
}

.recognition-left {
    flex: 1;
    padding-right: 4rem;
}

.recognition-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.recognition-list {
    list-style: none;
}

.recognition-list li {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.recognition-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.3rem;
}

.recognition-right {
    flex: 1;
}

.recognition-right img {
    width: 100%;
    border-radius: 8px;
}

.clients-section {
    padding: 6rem 10%;
    background-color: #f8f8f8;
}

.clients-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.clients-intro {
    font-size: 1.15rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 3rem;
}

.clients-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.category {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category p {
    color: #4a4a4a;
    font-size: 1.05rem;
}

.cta-about {
    padding: 6rem 10%;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.service-detailed {
    padding: 6rem 5%;
}

.service-detailed.alt-bg {
    background-color: #f8f8f8;
}

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-desc {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.service-includes h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.service-includes li {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.service-timeline {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #4a4a4a;
}

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

.price-label {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-note {
    font-size: 0.9rem;
    color: #666666;
    margin-left: 0.5rem;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
}

.packages-section {
    padding: 6rem 10%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.packages-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.packages-intro {
    font-size: 1.15rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
}

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

.package-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #2a2a2a;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.package-card.featured {
    background-color: #333333;
    border: 2px solid #ffffff;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.package-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.package-services {
    font-size: 1.05rem;
    color: #aaaaaa;
    margin-bottom: 1rem;
}

.package-benefit {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.package-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.2rem;
    color: #888888;
    text-decoration: line-through;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.package-card .select-service {
    width: 100%;
    background-color: #ffffff;
    color: #1a1a1a;
}

.package-card .select-service:hover {
    background-color: #e5e5e5;
}

.contact-split {
    display: flex;
    padding: 6rem 5%;
    gap: 5rem;
}

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

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-block a {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-block a:hover {
    opacity: 0.7;
}

.contact-note {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #666666;
}

.contact-map-placeholder {
    margin-top: 2rem;
}

.contact-map-placeholder img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.map-caption {
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
}

.contact-approach {
    flex: 1;
}

.contact-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.approach-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.faq-mini {
    background-color: #f8f8f8;
    padding: 2.5rem;
    border-radius: 8px;
}

.faq-mini h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.visit-section {
    padding: 6rem 10%;
    background-color: #f8f8f8;
}

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

.visit-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.visit-img {
    margin-top: 2.5rem;
}

.visit-img img {
    width: 100%;
    border-radius: 8px;
}

.thanks-hero {
    padding: 6rem 10%;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #1a1a1a;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

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

.thanks-contact-info p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
}

.email-link {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.email-link:hover {
    opacity: 0.7;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

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

.thanks-resources {
    padding: 4rem 10%;
    background-color: #f8f8f8;
}

.thanks-resources h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-resources > p {
    font-size: 1.05rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.resource-card p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.resource-card a {
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 3px;
}

.resource-card a:hover {
    opacity: 0.7;
}

.legal-page {
    padding: 4rem 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.update-date {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.7;
}

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

.cookies-table thead {
    background-color: #f8f8f8;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5e5e5;
    font-size: 1rem;
}

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

.cookies-table td {
    color: #4a4a4a;
}

@media (max-width: 968px) {
    .hero-split,
    .insights-section,
    .problem-split,
    .testimonials-split,
    .about-story-split,
    .team-split,
    .recognition-split,
    .service-detail-split,
    .contact-split,
    .consultation-form {
        flex-direction: column;
    }

    .hero-left,
    .insight-left,
    .insight-right,
    .problem-left,
    .testimonial-left,
    .story-left,
    .team-left,
    .team-right,
    .recognition-left,
    .service-info,
    .contact-info-side,
    .contact-approach,
    .form-split-left {
        padding-right: 0;
        padding-left: 0;
    }

    .hero-right {
        height: 50vh;
    }

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

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

    .trend-card,
    .service-item,
    .value-item,
    .method-item,
    .category,
    .package-card,
    .resource-card,
    .approach-item {
        flex: 1 1 100%;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .nav-right {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

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

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

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

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

    .section-title,
    .page-hero h1 {
        font-size: 2rem;
    }

    .insight-right h2,
    .problem-left h2,
    .approach-content h2,
    .services-preview h2,
    .stats-section h2,
    .form-split-left h2,
    .story-left h2,
    .values-section h2,
    .team-right h2,
    .methodology-section h2,
    .recognition-left h2,
    .clients-section h2,
    .cta-about h2,
    .packages-section h2,
    .contact-info-side h2,
    .contact-approach h2,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .service-info h2 {
        font-size: 1.8rem;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .nav-right {
        display: none;
    }

    .split-nav {
        justify-content: center;
    }
}
