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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

.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;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

.navigation {
    background: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #95a5a6;
    padding: 6px 12px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
}

.hero-asymmetric {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.hero-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 400px;
    color: white;
    transform: translateY(-30px);
}

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

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

.cta-primary {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image-offset {
    flex: 1;
    min-width: 500px;
    transform: rotate(-3deg) translateY(40px);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.intro-overlap {
    max-width: 1200px;
    margin: -60px auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.overlap-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.overlap-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.overlap-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
}

.stats-irregular {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.stat-block {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-block:hover {
    transform: translateY(-5px);
}

.stat-block.offset-right {
    transform: translateY(20px);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

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

.problem-section-diagonal {
    background: #ecf0f1;
    padding: 100px 40px;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.diagonal-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.problem-text {
    flex: 1.2;
    min-width: 400px;
}

.problem-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

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

.citation:hover {
    color: #2980b9;
    text-decoration: underline;
}

.problem-image {
    flex: 1;
    min-width: 350px;
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.insight-asymmetric {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
}

.insight-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.insight-visual {
    flex: 1;
    min-width: 400px;
    transform: translateY(-40px);
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.insight-content {
    flex: 1.3;
    min-width: 450px;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.insight-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.insight-list {
    list-style: none;
    margin: 30px 0;
}

.insight-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #546e7a;
}

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

.scientific-note {
    font-size: 15px;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 24px;
}

.services-creative {
    background: white;
    padding: 100px 40px;
}

.services-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 60px;
}

.services-grid-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

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

.service-card.large-card {
    flex: 1 1 100%;
    max-width: none;
    flex-direction: row;
}

.service-card.offset-card {
    transform: translateY(30px);
}

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

.large-card .service-image {
    width: 50%;
    height: auto;
}

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

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #546e7a;
    flex-grow: 1;
}

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

.service-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    color: #546e7a;
}

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

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
    margin: 20px 0;
}

.service-select {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.testimonials-scattered {
    background: #f8f9fa;
    padding: 100px 40px;
}

.testimonials-scattered h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.offset {
    transform: translateY(30px);
}

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

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

.form-section-diagonal {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 40px;
    transform: skewY(2deg);
    margin: 80px 0;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: skewY(-2deg);
}

.form-intro {
    margin-bottom: 40px;
}

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

.form-intro p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

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

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    font-size: 15px;
    display: none;
}

.form-notice.show {
    display: block;
}

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

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

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

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

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.trust-elements {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.trust-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
}

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

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 15px;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.references {
    font-size: 13px;
}

.references li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.8;
}

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

.about-content-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    transform: translateX(-40px);
}

.about-content-asymmetric h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    opacity: 0.95;
}

.mission-diagonal {
    padding: 100px 40px;
}

.mission-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.mission-image {
    flex: 1;
    min-width: 400px;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.mission-text {
    flex: 1;
    min-width: 400px;
}

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

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

.values-scattered {
    background: #f8f9fa;
    padding: 100px 40px;
}

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 260px;
    max-width: 500px;
}

.value-card.offset-right {
    transform: translateY(30px);
}

.value-card.offset-left {
    transform: translateY(-20px);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.technology-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.technology-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.tech-text {
    flex: 1.3;
    min-width: 400px;
}

.tech-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.tech-image {
    flex: 1;
    min-width: 350px;
}

.tech-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.team-intro {
    background: white;
    padding: 100px 40px;
}

.team-intro h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro p {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.expertise-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 240px;
}

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.expertise-item p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.journey-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 32px;
    font-weight: 800;
    color: #3498db;
    min-width: 100px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

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

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.btn-cta {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background: #ecf0f1;
}

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
    padding: 50px;
}

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

.service-tagline {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: #2c3e50;
}

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

.feature-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

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

.service-detail-price {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #667eea;
}

.comparison-section {
    background: #f8f9fa;
    padding: 100px 40px;
}

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

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #ecf0f1;
    font-size: 15px;
    color: #546e7a;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

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

.form-section-services {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 40px;
}

.form-section-services .form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-section-services h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c3e50;
    text-align: center;
}

.form-section-services p {
    text-align: center;
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 40px;
}

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

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

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

.contact-main {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.contact-info-section {
    flex: 1;
    min-width: 400px;
}

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

.contact-info-block {
    margin-bottom: 40px;
}

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

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.email-display {
    color: #3498db;
    font-weight: 600;
}

.contact-image-section {
    flex: 1;
    min-width: 400px;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    margin-bottom: 30px;
}

.contact-cta {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-cta h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-cta a {
    color: #3498db;
    font-weight: 600;
}

.support-info {
    background: #f8f9fa;
    padding: 80px 40px;
}

.support-info h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.support-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.support-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 260px;
}

.support-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.support-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #546e7a;
}

.faq-preview {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.faq-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.thanks-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 16px;
    color: #2c3e50;
    border-left: 4px solid #27ae60;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.thanks-info {
    margin: 50px 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

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

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.additional-resources {
    background: #f8f9fa;
    padding: 80px 40px;
}

.additional-resources h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.resource-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 16px;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #546e7a;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 8px;
    color: #546e7a;
}

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

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

.legal-page code {
    background: #ecf0f1;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
    text-align: center;
}

.legal-footer p {
    margin-bottom: 16px;
}

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

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

    .hero-text-block {
        min-width: 100%;
    }

    .hero-image-offset {
        min-width: 100%;
        transform: rotate(0) translateY(0);
    }

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

    .large-card .service-image {
        width: 100%;
    }

    .services-title {
        font-size: 36px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
}