:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --background: #0f0f1a;
    --surface: #1a1a2e;
    --text: #f8f9fa;
    --muted: #8892b0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6b85;
}

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

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

.main-nav {
    background-color: var(--primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    height: 45px;
    width: auto;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover span {
    background-color: var(--accent);
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

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

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.menu-content a {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu-content a:hover {
    color: var(--accent);
    transform: translateX(10px);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: var(--accent);
}

.hero {
    padding: 4rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--background) 0%, var(--primary) 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

.hover-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hover-card {
    position: relative;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--surface);
}

.card-front {
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-front h3,
.card-front p {
    padding: 0 1.5rem;
}

.card-front h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.hover-card:hover .card-front {
    transform: rotateY(180deg);
}

.hover-card:hover .card-back {
    transform: rotateY(360deg);
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 500;
}

.pattern-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.pattern-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, var(--accent) 0, var(--accent) 1px, transparent 0, transparent 50%),
        repeating-linear-gradient(-45deg, var(--accent) 0, var(--accent) 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
}

.pattern-content {
    position: relative;
    z-index: 1;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--surface);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.content-image {
    margin: 2rem 0;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent);
    color: var(--text);
    border-radius: 6px;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ff6b85;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.features-section {
    padding: 6rem 0;
    background-color: var(--primary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--surface);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.feature-icon {
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-icon svg {
    margin: 0 auto;
}

.testimonials-section {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

blockquote {
    border: none;
    margin: 0;
    padding: 0;
}

blockquote p {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1rem;
}

blockquote footer {
    font-size: 0.9rem;
    color: var(--accent);
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button.primary {
    background-color: var(--accent);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--accent);
}

.cta-button.secondary:hover {
    background-color: var(--accent);
}

.wave-footer {
    position: relative;
    background-color: var(--secondary);
    color: var(--text);
    margin-top: 4rem;
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--background);
}

.footer-content {
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col address {
    font-style: normal;
    line-height: 1.8;
}

.tax-id {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 249, 250, 0.1);
    color: var(--muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--surface);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--accent);
    color: var(--text);
}

.cookie-btn.decline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-link {
    color: var(--accent);
    font-size: 0.9rem;
}

.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--background) 0%, var(--primary) 100%);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-top: 1rem;
}

.content-section {
    padding: 4rem 0;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.values-section {
    padding: 6rem 0;
    background-color: var(--primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--surface);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

.process-section {
    padding: 6rem 0;
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--surface);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.expertise-section {
    padding: 6rem 0;
    background-color: var(--primary);
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.expertise-image {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.expertise-list {
    list-style: none;
    margin: 1.5rem 0;
}

.expertise-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.expertise-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.services-intro {
    padding: 4rem 0;
    background-color: var(--primary);
}

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

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    margin-bottom: 6rem;
}

.service-header {
    position: relative;
    margin-bottom: 2rem;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.service-header-text {
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    border-radius: 0 0 12px 12px;
}

.service-tagline {
    color: var(--muted);
    font-size: 1.1rem;
    margin: 0;
}

.service-content {
    background-color: var(--surface);
    padding: 3rem;
    border-radius: 12px;
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.format-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.format-option {
    background-color: var(--primary);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.format-option h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item {
    background-color: var(--primary);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.benefit-item h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.custom-programs {
    padding: 6rem 0;
    background-color: var(--primary);
}

.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.custom-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.custom-text li {
    margin-bottom: 0.75rem;
}

.formats-section {
    padding: 6rem 0;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.format-card {
    background-color: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.format-card:hover {
    transform: translateY(-10px);
}

.format-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.format-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.format-card p {
    padding: 0 1.5rem 1.5rem;
}

.methodology-section {
    padding: 6rem 0;
    background-color: var(--primary);
}

.methodology-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.methodology-item {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 12px;
}

.methodology-item h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 0;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-wrapper {
    background-color: var(--surface);
    padding: 3rem;
    border-radius: 12px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(248, 249, 250, 0.2);
    border-radius: 6px;
    background-color: var(--primary);
    color: var(--text);
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent);
    color: var(--text);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #ff6b85;
    transform: translateY(-2px);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 12px;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--accent);
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.contact-image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-section {
    padding: 4rem 0;
    background-color: var(--primary);
}

.map-wrapper {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.faq-item h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.thanks-section {
    padding: 6rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    color: var(--accent);
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-message {
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 2rem 0;
}

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

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.step .step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.thanks-actions {
    margin: 3rem 0;
}

.thanks-contact-info {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--surface);
    padding: 3rem;
    border-radius: 12px;
}

.legal-content h1 {
    margin-bottom: 1rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul, .legal-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.legal-content th,
.legal-content td {
    padding: 0.75rem;
    border: 1px solid rgba(248, 249, 250, 0.2);
    text-align: left;
}

.legal-content th {
    background-color: var(--primary);
    font-weight: 600;
}

.last-updated {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .menu-content a {
        font-size: 1.5rem;
    }
    
    .hover-cards-container {
        grid-template-columns: 1fr;
    }
    
    .content-box {
        padding: 2rem;
    }
    
    .features-grid,
    .values-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .content-block,
    .expertise-content,
    .custom-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .content-block.reverse {
        direction: ltr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .service-header-text {
        padding: 1rem;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .format-options,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
}

[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}