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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.ad-disclosure {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #f5c6cb;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #2c3e50;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    display: block;
    transition: all 0.3s;
}

.hero-card {
    position: relative;
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.hero-content-card {
    max-width: 700px;
    margin: -120px auto 0;
    position: relative;
    z-index: 10;
    background: #ffffff;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.hero-content-card h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a2332;
}

.hero-content-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-cards {
    padding: 80px 0;
    background-color: #fafbfc;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a2332;
}

.info-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.speakers-showcase {
    padding: 80px 0;
}

.speakers-showcase h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #1a2332;
}

.speakers-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.speaker-card {
    display: flex;
    gap: 35px;
    align-items: center;
}

.speaker-card:nth-child(even) {
    flex-direction: row-reverse;
}

.speaker-image {
    flex: 1;
    min-width: 300px;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
}

.speaker-info {
    flex: 1;
}

.speaker-info h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2332;
}

.speaker-info p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.insight-section {
    padding: 80px 0;
    background-color: #f4f6f8;
}

.split-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a2332;
}

.insight-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #5a6c7d;
}

.insight-image {
    flex: 1;
    min-width: 400px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-cards {
    padding: 80px 0;
}

.testimonials-cards h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #1a2332;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #5a6c7d;
    font-size: 14px;
}

.services-preview {
    padding: 80px 0;
    background-color: #fafbfc;
}

.services-preview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a2332;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 50px;
}

.services-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid #e8ecef;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.service-card.highlighted {
    border-color: #3498db;
    border-width: 3px;
}

.badge {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a2332;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #5a6c7d;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 25px;
}

.service-cta {
    display: block;
    text-align: center;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.trust-building {
    padding: 80px 0;
}

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a2332;
}

.trust-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.8;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-point strong {
    display: block;
    font-size: 19px;
    color: #1a2332;
    margin-bottom: 8px;
}

.trust-point p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0;
}

.form-section {
    padding: 80px 0;
    background-color: #f4f6f8;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-intro h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a2332;
}

.form-intro p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #dce1e6;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #229954;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef9e7;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 35px;
    background-color: #fff;
    border-left: 4px solid #f39c12;
    border-radius: 5px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a2332;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
}

.footer {
    background-color: #1a2332;
    color: #b8c5d1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: #d8e1e9;
}

.about-content {
    padding: 80px 0;
}

.content-layout {
    display: flex;
    gap: 50px;
}

.main-content {
    flex: 2;
}

.main-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a2332;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #1a2332;
}

.main-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.about-image-block {
    margin: 35px 0;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.about-image-block img {
    width: 100%;
    height: 100%;
}

.principles-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.principle-card {
    padding: 25px;
    border-radius: 6px;
}

.principle-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a2332;
}

.principle-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.team-approach {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin: 25px 0;
}

.team-approach p {
    margin-bottom: 12px;
}

.team-approach p:last-child {
    margin-bottom: 0;
}

.numbers-section {
    margin: 40px 0;
}

.stats-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    background-color: #f4f6f8;
    padding: 30px 20px;
    text-align: center;
    border-radius: 6px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: #5a6c7d;
}

.sidebar-info {
    flex: 1;
    max-width: 350px;
}

.sidebar-card {
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.sidebar-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a2332;
}

.sidebar-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

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

.values-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #5a6c7d;
}

.values-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

.sidebar-card a {
    color: #3498db;
    text-decoration: none;
}

.sidebar-card a:hover {
    text-decoration: underline;
}

.services-detailed {
    padding: 80px 0;
}

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

.intro-text p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-full-card {
    background-color: #ffffff;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.service-full-card.highlighted-service {
    border-color: #3498db;
    border-width: 3px;
}

.badge-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #3498db;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-header {
    background-color: #f8f9fa;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e8ecef;
}

.service-header h2 {
    font-size: 28px;
    color: #1a2332;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
}

.service-body {
    padding: 40px;
}

.service-description,
.service-includes {
    margin-bottom: 30px;
}

.service-description h3,
.service-includes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a2332;
}

.service-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

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

.detailed-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #5a6c7d;
    line-height: 1.7;
}

.detailed-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.detailed-list li strong {
    color: #2c3e50;
}

.btn-select {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.additional-services {
    margin: 60px 0;
}

.additional-services h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a2332;
}

.additional-services p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.addon-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.addon-card {
    flex: 1;
    min-width: 280px;
    padding: 30px 25px;
    border-radius: 6px;
    border: 1px solid #dce1e6;
}

.addon-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a2332;
}

.addon-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.addon-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

.comparison-note {
    margin: 60px 0;
}

.comparison-note h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a2332;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.comparison-table thead {
    background-color: #f4f6f8;
}

.comparison-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #1a2332;
    border-bottom: 2px solid #dce1e6;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e8ecef;
    color: #5a6c7d;
}

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

.faq-section {
    margin: 60px 0;
}

.faq-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a2332;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
}

.faq-item h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #1a2332;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

.cta-bottom {
    padding: 80px 0;
    background-color: #2c3e50;
    text-align: center;
}

.cta-bottom h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-bottom p {
    font-size: 18px;
    color: #d8e1e9;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
}

.contact-main {
    flex: 2;
}

.contact-main h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a2332;
}

.contact-main h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 35px;
    color: #1a2332;
}

.contact-main p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a2332;
}

.contact-value {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.topics-list {
    list-style: none;
    margin: 20px 0;
}

.topics-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

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

.topics-list li strong {
    color: #2c3e50;
}

.response-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
}

.response-info h3 {
    margin-top: 0;
}

.contact-sidebar {
    flex: 1;
    max-width: 350px;
}

.sidebar-box {
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.sidebar-box h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #1a2332;
}

.sidebar-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

.map-placeholder {
    padding: 60px 0;
    background-color: #fafbfc;
}

.map-placeholder h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a2332;
}

.map-box {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.map-note {
    font-size: 14px;
    color: #5a6c7d;
    text-align: center;
}

.thanks-section {
    padding: 100px 0;
    background-color: #fafbfc;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

.thanks-message {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 35px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    text-align: left;
    margin-bottom: 30px;
}

.thanks-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a2332;
}

.next-steps {
    padding-left: 20px;
}

.next-steps li {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-details {
    background-color: #e8f4fd;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.thanks-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a2332;
}

.thanks-details p {
    font-size: 16px;
    font-weight: 600;
    color: #3498db;
    margin: 0;
}

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

.thanks-contact p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-page {
    padding: 80px 0;
}

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

.legal-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

.update-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a2332;
}

.legal-content h3 {
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content-card {
        margin-top: -80px;
        padding: 35px 25px;
    }

    .hero-content-card h1 {
        font-size: 28px;
    }

    .cards-grid {
        flex-direction: column;
    }

    .speaker-card {
        flex-direction: column;
    }

    .speaker-card:nth-child(even) {
        flex-direction: column;
    }

    .split-container {
        flex-direction: column;
    }

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

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

    .services-cards {
        flex-direction: column;
    }

    .insight-stats {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

    .sidebar-info {
        max-width: 100%;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stats-grid {
        flex-direction: column;
    }

    .addon-cards {
        flex-direction: column;
    }

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

    .contact-sidebar {
        max-width: 100%;
    }

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