/*
--- Algorithm Avengers Theme ---
Viral Purple: #8E24AA
Cyan: #00BCD4
Black: #121212
Light Gray (for text): #F5F5F5
Dark Gray (for elements): #1E1E1E
*/

:root {
    --purple: #8E24AA;
    --cyan: #00BCD4;
    --black: #121212;
    --dark-gray: #1E1E1E;
    --light-gray: #F5F5F5;
    --text-color: #CCCCCC;
    --header-height: 80px;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

/* --- Global Styles & Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    background-color: var(--black);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--purple);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    color: var(--light-gray);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #b0b0b0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    position: relative;
}

.btn span {
    z-index: 1;
}

.btn-primary {
    background-color: var(--purple);
    color: var(--light-gray);
    border-color: var(--purple);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-gray);
    border: 2px solid var(--light-gray);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    color: var(--black);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    background: rgba(18, 18, 18, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    transition: transform var(--transition-speed) ease;
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-gray);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--light-gray);
    border-radius: 3px;
    transition: all 0.4s ease;
    position: absolute;
}

.bar-top {
    top: 0;
}

.bar-middle {
    top: 50%;
    transform: translateY(-50%);
}

.bar-bottom {
    bottom: 0;
}

.mobile-toggle.active .bar-top {
    transform: translateY(9.5px) rotate(45deg);
}

.mobile-toggle.active .bar-middle {
    opacity: 0;
}

.mobile-toggle.active .bar-bottom {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* --- Mobile Navigation --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav-link {
    color: var(--light-gray);
    font-size: 1.8rem;
    font-weight: 600;
}

.mobile-nav .btn {
    margin-top: 30px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, #2a0a38 0%, var(--black) 70%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape.shape-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -150px;
    background: var(--purple);
    animation: rotate-slow 50s linear infinite, float 8s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    background: var(--cyan);
    animation: rotate-slow 40s linear infinite reverse, float 10s ease-in-out infinite;
}

.hero-shape.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 20%;
    background: var(--purple);
    animation: float 6s ease-in-out infinite;
}


.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-title .line-1,
.hero-title .line-2 {
    display: block;
}

.hero-title .line-2 {
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #b0b0b0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: transparent;
    perspective: 1000px;
    height: 350px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-front {
    background: var(--dark-gray);
}

.service-card-back {
    background: linear-gradient(135deg, var(--purple), #5e1a72);
    transform: rotateY(180deg);
    color: var(--light-gray);
}

.service-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 20px;
    transition: transform var(--transition-speed) ease;
}

.service-card-front h3 {
    margin-bottom: 15px;
}

.service-card-back h3 {
    margin-bottom: 15px;
    color: var(--light-gray);
}

.card-cta {
    margin-top: 20px;
    padding: 8px 16px;
    border: 2px solid var(--cyan);
    border-radius: 50px;
    color: var(--cyan);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.card-cta:hover {
    background: var(--cyan);
    color: var(--black);
}

/* --- About / Defense Protocols Section --- */
.about-section {
    padding: 100px 0;
    background-color: #161616;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-panel .section-title {
    margin-bottom: 30px;
}

.about-text-panel .section-title::after {
    left: 0;
    transform: none;
}

.defense-steps {
    margin-top: 30px;
    margin-bottom: 40px;
}

.defense-steps li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.defense-steps i {
    color: var(--cyan);
    font-size: 1.2rem;
}

.about-image-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
}

@keyframes spin-cube {
    from {
        transform: rotateY(0deg) rotateX(0deg);
    }

    to {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

.image-cube {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    animation: spin-cube 30s infinite linear;
}

.cube-face {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--cyan);
    background: rgba(0, 188, 212, 0.1);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3) inset;
}

.front {
    transform: rotateY(0deg) translateZ(150px);
}

.back {
    transform: rotateY(180deg) translateZ(150px);
}

.right {
    transform: rotateY(90deg) translateZ(150px);
}

.left {
    transform: rotateY(-90deg) translateZ(150px);
}

.top {
    transform: rotateX(90deg) translateZ(150px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(150px);
}

/* --- Update Battles Section --- */
.update-battles-section {
    padding: 100px 0;
    background-color: var(--black);
}

.battles-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.battles-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(var(--dark-gray), var(--purple), var(--dark-gray));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.battle-card {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.battle-card::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12.5px;
    background-color: var(--black);
    border: 4px solid var(--cyan);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.battle-card.left {
    left: 0;
}

.battle-card.right {
    left: 50%;
}

.battle-card.right::after {
    left: -12.5px;
}

.battle-content {
    padding: 30px;
    background: var(--dark-gray);
    position: relative;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--purple);
    transition: all var(--transition-speed) ease;
}

.battle-card.right .battle-content {
    border-left: none;
    border-right: 5px solid var(--cyan);
}

.battle-card:hover .battle-content {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(142, 36, 170, 0.4);
}

.battle-content h3 {
    margin-bottom: 10px;
    color: var(--cyan);
}

.battle-content p {
    font-size: 0.95rem;
}

.battle-content strong {
    color: var(--light-gray);
}


/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #161616;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background: var(--dark-gray);
    border-radius: var(--border-radius);
    text-align: center;
    border-top: 5px solid var(--purple);
    opacity: 0.5;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--purple);
    position: absolute;
    opacity: 0.3;
}

.testimonial-text::before {
    top: -20px;
    left: -20px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -20px;
}


.author-name {
    color: var(--cyan);
}

.author-title {
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--purple);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}


/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('https://via.placeholder.com/1500x500/121212/8E24AA?text=Digital+Grid') no-repeat center center/cover;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 0;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.footer-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--purple);
    bottom: -150px;
    left: -150px;
}

.footer-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--cyan);
    top: -100px;
    right: -100px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about-text {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.social-link:hover {
    background: var(--purple);
    color: var(--light-gray);
    transform: translateY(-3px);
}

.footer-col-title {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--light-gray);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color);
}

.footer-links a:hover {
    color: var(--cyan);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    margin-top: 5px;
    color: var(--cyan);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* --- Subpage Styles (Contact, Legal Pages) --- */
.subpage {
    padding-top: var(--header-height);
}

.page-header {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('https://via.placeholder.com/1500x300/121212/00BCD4?text=Subpage+Header');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-subtitle {
    max-width: 600px;
    margin: 0 auto 20px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--text-color);
}

.breadcrumbs a:hover {
    color: var(--cyan);
}

.breadcrumbs span {
    color: var(--light-gray);
}

.breadcrumbs i {
    font-size: 0.7rem;
}

.page-content,
.contact-section {
    padding: 100px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-gray);
    padding: 40px;
    border-radius: var(--border-radius);
}

.content-wrapper h2 {
    margin: 30px 0 15px;
    color: var(--cyan);
    border-bottom: 2px solid rgba(0, 188, 212, 0.2);
    padding-bottom: 10px;
}

.content-wrapper p {
    margin-bottom: 15px;
}

/* --- Contact Page Specifics --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--dark-gray);
    padding: 50px;
    border-radius: var(--border-radius);
}

.contact-info-panel h2 {
    margin-bottom: 15px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(142, 36, 170, 0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--purple);
}

.method-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    background: var(--black);
    border: 1px solid #333;
    border-radius: var(--border-radius);
    color: var(--light-gray);
    transition: all var(--transition-speed) ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

.contact-form button {
    width: 100%;
    justify-content: center;
    padding: 15px;
}

/* --- Popup --- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    max-width: 400px;
    transform: scale(0.8);
    transition: transform var(--transition-speed) ease;
}

.popup:target .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: var(--text-color);
}

.popup-icon {
    font-size: 4rem;
    color: var(--cyan);
    margin-bottom: 20px;
}

.popup h3 {
    margin-bottom: 10px;
}

.popup .btn {
    margin-top: 20px;
}


/* --- Animations --- */
.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn-up 0.8s ease-out forwards;
}

.hero-title.animate-on-load {
    animation-delay: 0.2s;
}

.hero-subtitle.animate-on-load {
    animation-delay: 0.4s;
}

.hero-actions.animate-on-load {
    animation-delay: 0.6s;
}

.page-header h1.animate-on-load {
    animation-delay: 0.2s;
}

.page-header .page-subtitle.animate-on-load {
    animation-delay: 0.4s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.battle-card.animate-on-scroll.left {
    transform: translateX(-40px);
}

.battle-card.animate-on-scroll.right {
    transform: translateX(40px);
}

.battle-card.animate-on-scroll.is-visible {
    transform: translateX(0);
}


@keyframes fadeIn-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image-panel {
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .battles-timeline::after {
        left: 31px;
    }

    .battle-card {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .battle-card.left::after,
    .battle-card.right::after {
        left: 20px;
    }

    .battle-card.right {
        left: 0%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 30px;
    }

    .content-wrapper {
        padding: 30px;
    }
}