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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

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

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

.nav a:hover {
    color: #2563eb;
}

.ad-label {
    background-color: #fef3c7;
    color: #92400e;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.88) 0%, rgba(59, 130, 246, 0.75) 100%);
    display: flex;
    align-items: center;
}

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

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

.hero-text p {
    font-size: 21px;
    line-height: 1.6;
    opacity: 0.95;
}

.intro-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1e293b;
}

.card-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.65;
}

.services-overview {
    padding: 90px 0;
    background-color: #f8fafc;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 18px;
    color: #1e293b;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #64748b;
    max-width: 720px;
    margin: 0 auto 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.service-card {
    flex: 1 1 calc(50% - 13px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 16px;
}

.service-header h3 {
    font-size: 24px;
    color: #1e293b;
    flex: 1;
}

.service-price {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
}

.service-body p {
    color: #475569;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #64748b;
    font-size: 15px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 18px;
}

.form-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.form-header {
    text-align: center;
    margin-bottom: 38px;
}

.form-header h2 {
    font-size: 34px;
    margin-bottom: 14px;
    color: #1e293b;
}

.form-header p {
    font-size: 17px;
    color: #64748b;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

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

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.why-choose {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.why-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.why-icon {
    width: 100%;
    height: 180px;
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1e293b;
}

.why-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.65;
}

.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

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

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    background-color: #0f172a;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    font-size: 14px;
}

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

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

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

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

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

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

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #334155;
    transform: translateY(-2px);
}

.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 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.92;
}

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

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-detailed {
    display: flex;
    gap: 36px;
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.service-image {
    flex: 0 0 380px;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.service-info {
    flex: 1;
    min-width: 320px;
    padding: 38px;
}

.service-header-detailed {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-header-detailed h2 {
    font-size: 32px;
    color: #1e293b;
    flex: 1;
    min-width: 200px;
}

.price-tag {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 26px;
    white-space: nowrap;
}

.service-description {
    font-size: 17px;
    color: #475569;
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-info h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 16px;
    margin-top: 24px;
}

.detailed-features {
    list-style: none;
}

.detailed-features li {
    padding: 9px 0;
    padding-left: 28px;
    position: relative;
    color: #64748b;
    font-size: 16px;
}

.detailed-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-duration {
    margin-top: 26px;
    padding: 16px;
    background-color: #f1f5f9;
    border-radius: 8px;
    font-size: 15px;
    color: #475569;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.cta-card {
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 40px;
    margin-bottom: 18px;
}

.cta-card p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.93;
}

.btn-large {
    display: inline-block;
    background-color: #ffffff;
    color: #2563eb;
    padding: 18px 42px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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

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

.about-text {
    flex: 1;
    min-width: 320px;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1e293b;
}

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

.about-image {
    flex: 0 0 420px;
    min-width: 320px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    object-fit: cover;
}

.values-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

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

.value-card {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}

.value-card h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 14px;
}

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

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

.approach-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.approach-image {
    flex: 0 0 380px;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    object-fit: cover;
}

.approach-content {
    flex: 1;
    min-width: 320px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 36px;
    color: #1e293b;
}

.approach-item {
    margin-bottom: 28px;
}

.approach-item h4 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 10px;
}

.approach-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.experience-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.experience-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.experience-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.exp-card {
    flex: 0 0 300px;
    background-color: #ffffff;
    padding: 42px 32px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.exp-number {
    font-size: 56px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 14px;
}

.exp-card p {
    font-size: 17px;
    color: #475569;
}

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

.methodology-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1e293b;
}

.methodology-content > p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 44px;
    line-height: 1.75;
}

.methodology-grid {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 260px;
    background-color: #f8fafc;
    padding: 28px;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.method-card h4 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 12px;
}

.method-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.contact-info-main {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-card {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #1e293b;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e293b;
}

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

.contact-item h4 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.email-display {
    font-weight: 600;
    color: #2563eb;
}

.email-note {
    font-size: 14px;
    color: #64748b;
    margin-top: 6px;
}

.contact-methods {
    list-style: none;
}

.contact-methods li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #475569;
    font-size: 16px;
}

.contact-methods li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2563eb;
    font-size: 24px;
}

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

.faq-item h4 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 8px;
}

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

.contact-side-image {
    flex: 0 0 340px;
    min-width: 300px;
}

.contact-side-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    object-fit: cover;
}

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

.location-section h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1e293b;
}

.location-section > .container > p {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.location-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 10px;
}

.location-card h4 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 18px;
}

.location-card ul {
    list-style: none;
}

.location-card ul li {
    padding: 8px 0;
    color: #475569;
    font-size: 16px;
}

.location-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1e293b;
}

.last-updated {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 38px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 44px;
    margin-bottom: 18px;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #334155;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #475569;
}

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

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

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

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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

.info-box {
    background-color: #f1f5f9;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 4px solid #2563eb;
}

.info-box p {
    margin-bottom: 8px;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
}

.gdpr-table thead {
    background-color: #f1f5f9;
}

.gdpr-table th,
.gdpr-table td {
    padding: 14px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.gdpr-table th {
    font-weight: 600;
    color: #1e293b;
}

.gdpr-table td {
    color: #475569;
    font-size: 15px;
}

.rights-section {
    margin-top: 32px;
}

.rights-section h3 {
    font-size: 20px;
    color: #1e293b;
    margin-top: 24px;
    margin-bottom: 10px;
}

.rights-section p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.75;
}

.thanks-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

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

.service-confirmation {
    background-color: #f0f9ff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #1e40af;
    font-weight: 600;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: #f1f5f9;
    color: #475569;
}

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

.next-steps {
    text-align: left;
    background-color: #f8fafc;
    padding: 28px;
    border-radius: 10px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #1e293b;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #475569;
    font-size: 16px;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

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

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

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

    .card-grid,
    .services-grid,
    .why-grid {
        flex-direction: column;
    }

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

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

    .service-image {
        flex: 1;
        min-height: 240px;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .about-content-split,
    .approach-layout {
        flex-direction: column;
    }

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