* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d8659;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

.nav-links a:hover {
    color: #2d8659;
}

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

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

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

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

.hamburger:hover span {
    background-color: #2d8659;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
}

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

.narrow-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.story-intro {
    background-color: #ffffff;
}

.story-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #2c3e50;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #4a5568;
}

.inline-image {
    margin: 50px 0;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.problem-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.two-column-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.column-text {
    flex: 1;
}

.column-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.column-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
}

.column-text ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.column-text ul li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.column-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d8659;
    font-weight: 700;
}

.column-image {
    flex: 1;
}

.column-image img {
    border-radius: 8px;
    width: 100%;
    background-color: #e9ecef;
}

.insight-section {
    background-color: #ffffff;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.insight-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #2d8659;
}

.insight-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.insight-card a {
    color: #2d8659;
    font-weight: 600;
}

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

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

.full-width-bg {
    background: linear-gradient(135deg, #2d8659 0%, #1f5d3f 100%);
    color: #ffffff;
    padding: 80px 40px;
}

.full-width-bg h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.full-width-bg p {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.95;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.testimonials-section {
    background-color: #ffffff;
}

.testimonial-block {
    margin-bottom: 40px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.testimonial-block blockquote {
    border-left: 4px solid #2d8659;
    padding-left: 25px;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.testimonial-block cite {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

.benefits-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.benefits-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.benefit-item img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #dee2e6;
}

.benefit-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.services-reveal {
    background-color: #ffffff;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-card .price {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #2d8659;
    padding: 10px 20px;
    background-color: #e8f5e9;
    border-radius: 6px;
}

.cta-form-section {
    background: linear-gradient(135deg, #1f5d3f 0%, #2d8659 100%);
    padding: 80px 0;
}

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

.form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}

.form-wrapper p {
    text-align: center;
    margin-bottom: 35px;
    font-size: 17px;
    color: #4a5568;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d8659;
}

.btn-submit {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background-color: #2d8659;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #6c757d;
    text-align: center;
    font-style: italic;
}

.references-section {
    background-color: #ffffff;
}

.references-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    list-style-position: outside;
    padding-left: 25px;
}

.references-list li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a5568;
}

.references-list a {
    color: #2d8659;
    word-break: break-all;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 15px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: #2d8659;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2d8659;
    color: #ffffff;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, #2d8659 0%, #1f5d3f 100%);
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-section {
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a5568;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 300px;
    max-width: 320px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e9ecef;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.team-member p {
    font-size: 16px;
    color: #6c757d;
}

.approach-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.approach-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #2d8659;
    min-width: 60px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-section {
    background: linear-gradient(135deg, #2d8659 0%, #1f5d3f 100%);
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background-color: #1f5d3f;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d8659;
    font-weight: 700;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2d8659;
}

.btn-select-service {
    padding: 14px 35px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    background-color: #2d8659;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    background-color: #e9ecef;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #ffffff;
    margin: 80px auto;
    padding: 50px;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 700;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.modal-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #4a5568;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    background-color: #e9ecef;
}

.business-model-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.business-model-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.business-model-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 72px;
    color: #2d8659;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4a5568;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 17px;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a5568;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    font-size: 17px;
    font-weight: 700;
    color: #2d8659;
    background-color: #e8f5e9;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.legal-container ul {
    margin: 20px 0 20px 25px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a5568;
}

.legal-container a {
    color: #2d8659;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1f5d3f;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #dee2e6;
    color: #2c3e50;
}

.cookies-table td {
    padding: 15px;
    font-size: 15px;
    border: 1px solid #dee2e6;
    color: #4a5568;
}

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

    .hamburger {
        display: flex;
    }

    .nav-links.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 h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

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

    .service-detail-card {
        flex-direction: column;
    }

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

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

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

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

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .container {
        padding: 0 20px;
    }

    .narrow-content {
        padding: 60px 20px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .thanks-content {
        padding: 40px 25px;
    }

    .legal-container {
        padding: 40px 25px;
    }
}
