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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #d4af37;
    --text-color: #333;
    --light-gray: #e5e5e5;
    --border-color: #ddd;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
}

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

a:hover {
    color: var(--accent-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-header {
    background-color: #fff;
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -1px;
}

.logo a {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border: 1px solid #999;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-magazine {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.hero-main {
    flex: 2;
}

.hero-main h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
}

.hero-sidebar {
    flex: 1;
    min-width: 300px;
}

.hero-sidebar img {
    width: 100%;
    margin-bottom: 15px;
}

.hero-caption {
    font-size: 13px;
    font-style: italic;
    color: #666;
    line-height: 1.5;
}

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

.column-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.column-wide {
    flex: 2;
}

.column-wide h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: normal;
}

.column-wide p {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: justify;
}

.column-narrow {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 14px;
    line-height: 1.4;
}

.feature-grid {
    padding: 0 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    flex: 1;
    min-width: 300px;
}

.feature-large {
    flex: 2;
    min-width: 600px;
}

.feature-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    color: #fff;
    padding: 40px 30px;
}

.feature-overlay h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: normal;
}

.feature-overlay h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: normal;
}

.feature-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.feature-cta:hover {
    background-color: #c09d2d;
}

.insight-section {
    padding: 80px 40px;
    background-color: #fff;
}

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

.insight-text {
    flex: 1.5;
}

.insight-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: normal;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: justify;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
}

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

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: normal;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.trust-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.testimonial-magazine {
    padding: 80px 40px;
    background-color: var(--primary-color);
    color: #fff;
}

.testimonial-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial-quote {
    flex: 1;
    min-width: 300px;
}

.testimonial-quote blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    quotes: """ """ "'" "'";
}

.testimonial-quote blockquote::before {
    content: open-quote;
}

.testimonial-quote blockquote::after {
    content: close-quote;
}

.testimonial-quote cite {
    font-size: 14px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.problem-amplification {
    padding: 80px 40px;
    background-color: #fff;
}

.problem-container {
    max-width: 1400px;
    margin: 0 auto;
}

.problem-container h2 {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: normal;
}

.problem-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-col {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-left: 3px solid var(--accent-color);
}

.problem-col h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.problem-col p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.services-header h2 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: normal;
}

.services-header p {
    font-size: 18px;
    color: #555;
}

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

.service-card {
    flex: 1;
    min-width: 380px;
    background-color: #fff;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.service-card.selected {
    border: 2px solid var(--accent-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.service-header h3 {
    font-size: 26px;
    font-weight: 600;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    white-space: nowrap;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-select {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 80px 40px;
    background-color: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: normal;
}

.form-intro p {
    font-size: 18px;
    color: #666;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background-color: var(--secondary-color);
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #c09d2d;
}

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

.cta-content h2 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: normal;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c09d2d;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f9f9f9;
    border-top: 1px solid var(--border-color);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.main-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

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

.sticky-cta-button {
    display: block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #c09d2d;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.page-hero {
    background-color: var(--primary-color);
    color: #fff;
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: normal;
}

.page-hero-content p {
    font-size: 20px;
    color: #ccc;
}

.about-intro {
    padding: 80px 40px;
    background-color: #fff;
}

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

.about-main {
    flex: 2;
}

.about-main h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: normal;
}

.about-main p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: justify;
}

.about-sidebar {
    flex: 1;
}

.about-sidebar img {
    width: 100%;
}

.methodology {
    padding: 80px 40px;
    background-color: var(--secondary-color);
}

.method-container {
    max-width: 1200px;
    margin: 0 auto;
}

.method-container h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: normal;
}

.method-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.method-item {
    flex: 1;
    min-width: 250px;
}

.method-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.method-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.about-story {
    padding: 80px 40px;
    background-color: #fff;
}

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

.story-content h2 {
    font-size: 48px;
    margin-bottom: 35px;
    font-weight: normal;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

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

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-container h2 {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: normal;
}

.expertise-areas {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.expertise-col {
    flex: 1;
    min-width: 280px;
}

.expertise-col h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.expertise-col p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.values-section {
    padding: 80px 40px;
    background-color: #fff;
}

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

.values-content h2 {
    font-size: 48px;
    margin-bottom: 35px;
    font-weight: normal;
}

.values-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

.services-page {
    padding: 80px 40px;
    background-color: #fff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: normal;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background-color: var(--secondary-color);
    padding: 50px;
    border-left: 5px solid var(--accent-color);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 30px;
    flex-wrap: wrap;
}

.service-detail-header h3 {
    font-size: 32px;
    font-weight: 600;
}

.service-detail-price {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-color);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    font-weight: 600;
}

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

.service-detail-content ul li {
    padding: 6px 0 6px 25px;
    position: relative;
    font-size: 16px;
}

.service-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.service-detail-button {
    padding: 14px 40px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.service-detail-button:hover {
    background-color: #333;
}

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

.services-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
}

.services-form-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: normal;
}

.services-form-container > p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-section {
    padding: 80px 40px;
    background-color: #fff;
}

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

.contact-info {
    flex: 1.5;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: normal;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    background-color: var(--secondary-color);
    padding: 30px;
    border-left: 3px solid var(--accent-color);
}

.contact-note h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.contact-note a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
}

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

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

.faq-container h2 {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: normal;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.thanks-section {
    padding: 100px 40px;
    background-color: #fff;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: normal;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: normal;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thanks-button {
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.thanks-button:hover {
    background-color: #c09d2d;
}

.thanks-button-secondary {
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.thanks-button-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.thanks-note {
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.thanks-note p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.legal-page {
    padding: 80px 40px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 52px;
    margin-bottom: 10px;
    font-weight: normal;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    list-style-type: disc;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent-color);
    font-weight: 600;
}

.legal-content strong {
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
}

.cookie-table thead {
    background-color: var(--secondary-color);
}

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

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

@media (max-width: 1200px) {
    .hero-main h1 {
        font-size: 56px;
    }

    .feature-large {
        min-width: 100%;
    }
}

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

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-main h1 {
        font-size: 42px;
    }

    .column-layout,
    .insight-content,
    .about-layout,
    .contact-layout {
        flex-direction: column;
    }

    .feature-item {
        min-width: 100%;
    }

    .testimonial-layout {
        flex-direction: column;
    }

    .problem-columns {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

@media (max-width: 640px) {
    .hero-magazine {
        padding: 40px 20px;
    }

    .hero-main h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-columns,
    .insight-section,
    .trust-indicators,
    .testimonial-magazine,
    .problem-amplification,
    .services-reveal,
    .form-section,
    .final-cta {
        padding: 50px 20px;
    }

    .column-wide h2,
    .insight-text h2,
    .trust-container h2,
    .problem-container h2,
    .services-header h2 {
        font-size: 32px;
    }

    .page-hero {
        padding: 60px 20px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .services-form-container {
        padding: 40px 20px;
    }

    .thanks-container h1 {
        font-size: 32px;
    }

    .legal-container h1 {
        font-size: 36px;
    }

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