* {
    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: #ffffff;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 300px;
    margin: 0;
}

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

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

.btn-accept {
    background: #28a745;
    color: #ffffff;
}

.btn-accept:hover {
    background: #218838;
}

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

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

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 900;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

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

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    background: #fff3cd;
    color: #856404;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.hero-section {
    position: relative;
    min-height: 600px;
    background: #000000;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 700px;
}

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

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

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231,76,60,0.3);
}

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

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

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

.warning-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.warning-visual {
    flex: 1;
    background: #ecf0f1;
}

.warning-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.warning-text {
    flex: 1;
}

.warning-text h3 {
    font-size: 34px;
    margin-bottom: 32px;
    color: #e74c3c;
}

.signal-list {
    list-style: none;
    margin-bottom: 32px;
}

.signal-list li {
    padding: 14px 0 14px 36px;
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid #ecf0f1;
}

.signal-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 20px;
}

.warning-cta {
    margin-top: 32px;
}

.inline-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #2980b9;
}

.process-section {
    padding: 100px 0;
    background: #2c3e50;
    color: #ffffff;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.process-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-block {
    flex: 1;
    min-width: 250px;
    background: rgba(255,255,255,0.08);
    padding: 40px 28px;
    border-radius: 8px;
}

.process-number {
    font-size: 56px;
    font-weight: 900;
    color: #3498db;
    margin-bottom: 20px;
    line-height: 1;
}

.process-block h4 {
    font-size: 22px;
    margin-bottom: 16px;
}

.process-block p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.services-preview {
    padding: 100px 0;
    background: #ecf0f1;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 20px;
    color: #7f8c8d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.service-image {
    height: 240px;
    overflow: hidden;
    background: #95a5a6;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-info p {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

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

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

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

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

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

.form-intro {
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    opacity: 0.95;
}

.contact-form {
    background: #ffffff;
    padding: 44px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-row {
    display: flex;
    gap: 20px;
}

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

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39,174,96,0.3);
}

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

.trust-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

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

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

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

.disclaimer-box {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.disclaimer-box h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #856404;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

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

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

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

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

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

.value-block {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-icon {
    height: 240px;
    background: #95a5a6;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.value-block h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #2c3e50;
}

.value-block p {
    padding: 0 24px 24px;
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
}

.approach-section {
    padding: 100px 0;
    background: #ecf0f1;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.approach-visual {
    flex: 1;
    background: #95a5a6;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coverage-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.coverage-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.coverage-section p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.coverage-note {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.coverage-note p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

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

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 12px;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

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

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

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

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

.service-detail-visual {
    flex: 1;
    background: #95a5a6;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

.service-price-large {
    font-size: 42px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 28px 0 16px;
    color: #2c3e50;
}

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

.service-detail-content ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

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

.service-notes {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-notes h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.note-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
}

.note-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.note-item p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
}

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

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

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

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-detail {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

.contact-visual {
    flex: 1;
    background: #95a5a6;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.response-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.response-info h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.response-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.response-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #3498db;
}

.response-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.7;
}

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.7;
    margin: 0;
}

.contact-cta {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-message {
    font-size: 19px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-details {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-info {
    font-size: 17px;
    color: #2c3e50;
}

.thanks-info {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding: 14px 0 14px 40px;
    position: relative;
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-urgent {
    background: #fff3cd;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-urgent h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #856404;
}

.thanks-urgent p {
    font-size: 15px;
    color: #856404;
    margin-bottom: 8px;
}

.urgent-email {
    font-weight: 700;
    font-size: 17px;
}

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

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #3498db;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.legal-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 10px;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

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

.cookie-table thead {
    background: #ecf0f1;
}

.cookie-table th {
    padding: 14px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #bdc3c7;
}

.cookie-table td {
    padding: 14px;
    border-bottom: 1px solid #ecf0f1;
    color: #34495e;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .hero-text p {
        font-size: 17px;
    }

    .warning-grid,
    .approach-content,
    .contact-layout,
    .service-detail-item {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

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

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