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

html {
    scroll-behavior: smooth;
}

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: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #495057;
    position: relative;
}

.nav-menu a:hover {
    color: #3498db;
}

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

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

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background-color: #5a67d8;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #3498db;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

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

.intro-card p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.method-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.method-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.method-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

.method-image img {
    width: 100%;
    height: 500px;
}

.method-text {
    flex: 1;
}

.method-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.method-list {
    margin-top: 32px;
}

.method-list li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

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

.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 24px);
    min-width: 320px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.service-content {
    padding: 32px;
}

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

.service-content p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-details {
    margin-bottom: 20px;
}

.duration {
    display: inline-block;
    font-size: 14px;
    color: #495057;
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 6px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.form-wrapper > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
    color: #2c3e50;
}

.testimonial-author span {
    font-size: 14px;
    color: #6c757d;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef9e7;
    border-top: 2px solid #f9e79f;
    border-bottom: 2px solid #f9e79f;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #7d6608;
    text-align: center;
}

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

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

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

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

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

.btn-link {
    padding: 12px 24px;
    font-size: 15px;
    color: #3498db;
    text-decoration: underline;
    cursor: pointer;
}

.btn-link:hover {
    color: #5dade2;
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

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

.about-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 80px;
}

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #3498db;
}

.value-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.team-section {
    margin-bottom: 80px;
}

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

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 260px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

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

.team-role {
    font-size: 14px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-info p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 80px;
}

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

.approach-content {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.approach-block {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.approach-block p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

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

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

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

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

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
}

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

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

.service-detail-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 32px;
}

.service-features li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    color: #495057;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 24px;
}

.service-price-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

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

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

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

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

.included-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.included-item {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.included-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

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

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

.contact-info {
    flex: 1.2;
}

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

.contact-info > p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 40px;
}

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

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #3498db;
}

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

.contact-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 8px;
}

.contact-faq {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.contact-faq h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 24px;
}

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

.faq-item strong {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.contact-image {
    flex: 0.8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

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

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

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

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

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

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 18px;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-content > p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 60px;
}

.next-steps {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    text-align: left;
}

.step-item {
    flex: 1;
    min-width: 220px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.step-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

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

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #495057;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    list-style-type: disc;
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #6c757d;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

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

.cookie-table th,
.cookie-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    font-weight: 700;
    color: #2c3e50;
    font-size: 15px;
}

.cookie-table td {
    font-size: 14px;
    color: #495057;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }

    .hero-content,
    .method-content,
    .about-intro,
    .service-detail-content,
    .contact-layout {
        flex-direction: column;
    }

    .hero-text h1,
    .page-header h1 {
        font-size: 36px;
    }

    .services-section h2,
    .testimonials-section h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}