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

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

.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a56db;
}

.ad-disclosure {
    font-size: 12px;
    color: #6b7280;
    padding: 4px 12px;
    background-color: #f3f4f6;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

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

.nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #1a56db;
}

.hero-card {
    background-color: #fff;
    margin: 30px 0;
}

.hero-card-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.hero-card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.hero-card-content {
    padding: 50px 40px;
    text-align: center;
}

.hero-card-content h1 {
    font-size: 42px;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-card-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    background-color: #1a56db;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26,86,219,0.3);
}

.cta-secondary {
    background-color: #fff;
    color: #1a56db;
    padding: 16px 32px;
    border: 2px solid #1a56db;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #1a56db;
    color: #fff;
    transform: translateY(-2px);
}

.intro-section {
    padding: 60px 0;
}

.intro-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.intro-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

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

.intro-card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.intro-card p {
    color: #6b7280;
    font-size: 15px;
}

.services-preview {
    padding: 70px 0;
    background-color: #fff;
}

.services-full {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

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

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.service-card-body {
    padding: 30px;
}

.service-card-body h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-body p {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-details {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.service-details p {
    margin-bottom: 8px;
    font-size: 14px;
}

.service-details p:last-child {
    margin-bottom: 0;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a56db;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    background-color: #1a56db;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #1e40af;
    transform: scale(1.02);
}

.form-section {
    padding: 70px 0;
    background-color: #f3f4f6;
}

.form-card {
    background-color: #fff;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-card-header h2 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 10px;
}

.form-card-header p {
    color: #6b7280;
    font-size: 15px;
}

.course-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
}

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

.form-group input[readonly] {
    background-color: #f3f4f6;
    color: #6b7280;
}

.btn-submit {
    background-color: #059669;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5,150,105,0.3);
}

.testimonials-section {
    padding: 70px 0;
    background-color: #f9fafb;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #111827;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 14px;
}

.cta-section {
    padding: 70px 0;
}

.cta-card-large {
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(26,86,219,0.25);
}

.cta-card-large h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-card-large p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-card-large .cta-secondary {
    background-color: #fff;
    color: #1a56db;
    border: none;
}

.cta-card-large .cta-secondary:hover {
    background-color: #f3f4f6;
    color: #1a56db;
}

.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 50px 0 20px;
}

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

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    padding: 20px;
    background-color: #374151;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #d1d5db;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accept {
    background-color: #059669;
    color: #fff;
}

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

.btn-reject {
    background-color: #6b7280;
    color: #fff;
}

.btn-reject:hover {
    background-color: #4b5563;
}

.page-hero {
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

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

.page-hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
}

.about-content {
    padding: 50px 0;
}

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

.about-card-wide {
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.about-card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.about-card-text {
    padding: 40px;
}

.about-card-text h2 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 20px;
}

.about-card-text p {
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.about-card-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
}

.about-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.team-section {
    padding: 70px 0;
    background-color: #f9fafb;
}

.team-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.team-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.team-card-content {
    padding: 25px;
}

.team-card-content h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 10px;
}

.team-card-content p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.methodology-section {
    padding: 70px 0;
    background-color: #fff;
}

.methodology-content h2 {
    text-align: center;
    font-size: 32px;
    color: #111827;
    margin-bottom: 40px;
}

.methodology-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.methodology-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    border-left: 4px solid #1a56db;
}

.methodology-card h4 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 12px;
}

.methodology-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.contact-content {
    padding: 50px 0;
}

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

.contact-card-main {
    width: 100%;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-card-main h2 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
}

.contact-text h4 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 8px;
}

.contact-text p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.contact-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
}

.contact-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.map-section {
    padding: 50px 0;
    background-color: #f9fafb;
}

.map-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.map-card h2 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 25px;
}

.map-placeholder {
    background-color: #e5e7eb;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    text-align: center;
}

.map-info p {
    color: #4b5563;
    margin-bottom: 8px;
}

.faq-section {
    padding: 70px 0;
}

.faq-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.faq-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-card h4 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 12px;
}

.faq-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.benefits-section {
    padding: 70px 0;
    background-color: #f9fafb;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.benefit-card h4 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.legal-content {
    padding: 50px 0;
}

.legal-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
}

.legal-card h2 {
    font-size: 24px;
    color: #111827;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 20px;
    color: #374151;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-card p {
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-card ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-card ul li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-card a {
    color: #1a56db;
    text-decoration: underline;
}

.legal-card a:hover {
    color: #1e40af;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    background-color: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #059669;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
}

.thanks-card h1 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-service {
    background-color: #f3f4f6;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-service p {
    margin: 0;
    font-size: 15px;
    color: #374151;
}

.next-steps {
    text-align: left;
    margin-bottom: 35px;
}

.next-steps h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.step-number {
    background-color: #1a56db;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    color: #4b5563;
    margin: 0;
    padding-top: 5px;
    line-height: 1.6;
}

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

.btn-primary {
    background-color: #1a56db;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

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

.btn-secondary {
    background-color: #fff;
    color: #1a56db;
    padding: 14px 28px;
    border: 2px solid #1a56db;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
}

.additional-info {
    padding: 50px 0;
    background-color: #f9fafb;
}

.info-cards-horizontal {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card-h {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-card-h h4 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
}

.info-card-h p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

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

    .nav {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .hero-card-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-cards,
    .intro-cards,
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .legal-card {
        padding: 30px 20px;
    }

    .thanks-card {
        padding: 35px 25px;
    }
}