/* Reset and Base */
* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 2px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #34495e;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.8rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 0;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background-color: #764ba2;
}

/* CTA Buttons */
.cta-primary, .btn-primary, .btn-submit {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-primary:hover, .btn-primary:hover, .btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-outline {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #2c3e50;
    color: #ffffff;
}

/* Problem Section */
.problem-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.content-narrow {
    max-width: 780px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.problem-section p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.8rem;
}

/* Insight Section */
.insight-section {
    background: #f8f9fa;
    padding: 6rem 2rem;
}

.two-column-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.column-text {
    flex: 1;
}

.column-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.column-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.column-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #dfe6e9;
}

.citation {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.citation:hover {
    text-decoration: underline;
}

/* Story Section */
.story-section {
    background: linear-gradient(to bottom, #ffffff 0%, #ecf0f1 100%);
    padding: 5rem 2rem;
}

.story-section h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.story-section p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.8rem;
}

/* Trust Section */
.trust-section {
    background: #2c3e50;
    padding: 6rem 2rem;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background: #34495e;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.quote-mark {
    font-size: 4rem;
    color: #e74c3c;
    line-height: 1;
    margin-bottom: 1rem;
}

.trust-card p {
    color: #ecf0f1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.author {
    color: #95a5a6;
    font-style: italic;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

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

.benefits-section h2 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    min-width: 60px;
}

.benefit-item h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #555;
    font-size: 1.05rem;
}

/* Services Preview */
.services-preview {
    background: #ecf0f1;
    padding: 6rem 2rem;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #dfe6e9;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 6rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.selected-service {
    background: #ecf0f1;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #fffbea;
    padding: 3rem 2rem;
    border-top: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
}

.disclaimer {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

/* References Section */
.references-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.references-section h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.references-list {
    list-style-position: inside;
    font-size: 0.95rem;
    line-height: 2;
}

.references-list a {
    color: #3498db;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 2rem;
    background: #ffffff;
}

.service-full {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    background-color: #dfe6e9;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-details h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.detailed-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.detailed-features li {
    padding: 0.6rem 0;
    color: #555;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.05rem;
}

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

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-hero p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
}

.about-story {
    background: #ffffff;
    padding: 5rem 2rem;
}

.about-story h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-story p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.8rem;
}

.mission-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.two-column-reverse {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: center;
}

.values-section {
    background: #2c3e50;
    padding: 6rem 2rem;
}

.values-section h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #34495e;
    padding: 2.5rem;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-card p {
    color: #ecf0f1;
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.team-section h2 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.team-layout {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #e74c3c;
}

.team-member h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.role {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.approach-section {
    background: #ecf0f1;
    padding: 5rem 2rem;
}

.approach-section h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.approach-section p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.8rem;
}

.cta-about {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
}

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

.cta-box h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Contact Page */
.contact-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.contact-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #dfe6e9;
}

.contact-cta {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #555;
    margin-bottom: 1.5rem;
}

.faq-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.faq-section h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

/* Thanks Page */
.thanks-section {
    background: #ffffff;
    padding: 6rem 2rem;
    min-height: 60vh;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: #ffffff;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.order-info {
    background: #ecf0f1;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.selected-service-display {
    font-size: 1.1rem;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-extra {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.thanks-extra h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
}

.tips-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tip-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tip-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    background: #ffffff;
    padding: 4rem 2rem;
    min-height: 80vh;
}

.update-date {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px 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: 2rem;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .two-column-layout,
    .two-column-reverse,
    .service-full,
    .contact-layout {
        flex-direction: column;
    }

    .service-full.reverse {
        flex-direction: column;
    }

    .hero-section h1 {
        font-size: 2.4rem;
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-grid,
    .values-grid,
    .tips-grid {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }
}