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

:root {
    --primary-color: #2d5f9f;
    --secondary-color: #e84545;
    --accent-color: #f6a623;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.main-nav {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(45, 95, 159, 0.1);
}

.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1 1 500px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-indicators {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.indicator-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.indicator-card {
    flex: 1 1 220px;
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.indicator-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.indicator-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.indicator-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.indicator-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-preview {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(45, 95, 159, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1 1 350px;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

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

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-select-service {
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

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

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonials-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.testimonial-card {
    flex: 1 1 320px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.form-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background-color: var(--light-bg);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.form-intro {
    flex: 1 1 350px;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-intro p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-benefits li {
    color: var(--text-dark);
    font-weight: 500;
}

.inquiry-form {
    flex: 1 1 400px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.why-us-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.why-us-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.why-card {
    flex: 1 1 260px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background-color: #c73636;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--white);
}

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

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

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

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail-section {
    padding: 80px 20px;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    padding: 0;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-detail-content {
    flex: 1 1 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features li {
    color: var(--text-dark);
    font-weight: 500;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.process-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-card {
    flex: 1 1 240px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.story-text {
    flex: 1 1 500px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.story-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.values-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.value-card {
    flex: 1 1 260px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

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

.team-card {
    flex: 1 1 260px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.team-image {
    height: 280px;
    overflow: hidden;
}

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

.team-card h3 {
    font-size: 1.3rem;
    margin: 20px 20px 8px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 20px 15px;
}

.team-bio {
    color: var(--text-light);
    padding: 0 20px 25px;
    line-height: 1.6;
}

.technology-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.technology-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.tech-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.tech-text {
    flex: 1 1 500px;
}

.tech-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.tech-list li {
    color: var(--text-dark);
    padding-left: 25px;
    position: relative;
}

.tech-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.tech-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.certifications-section {
    padding: 80px 20px;
}

.certifications-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.cert-card {
    flex: 1 1 260px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.cert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.cert-card p {
    opacity: 0.95;
    line-height: 1.7;
}

.cta-about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.contact-block h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-map {
    flex: 1 1 500px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.9);
    padding: 20px;
    color: var(--white);
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.faq-card {
    flex: 1 1 350px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.thanks-section {
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-details {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next-steps {
    margin: 50px 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.step-card {
    flex: 1 1 220px;
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.thanks-contact {
    margin: 40px 0;
}

.thanks-contact p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-email {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

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

.thanks-testimonial {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.thanks-testimonial h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonial-highlight {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.legal-page {
    padding: 80px 20px;
    min-height: 70vh;
}

.legal-updated {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 30px;
    margin: 15px 0;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-back {
    text-align: center;
    margin-top: 50px;
}

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

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

    .section-header h2,
    .testimonials-section h2,
    .why-us-section h2,
    .cta-banner h2,
    .process-section h2,
    .values-section h2,
    .team-section h2,
    .technology-section h2,
    .certifications-section h2,
    .cta-about h2,
    .cta-services h2,
    .cta-contact h2,
    .faq-section h2,
    .thanks-content h1 {
        font-size: 1.8rem;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: row;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }
}