/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary-color);
    position: relative;
}

.logo-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list li a {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: var(--text-primary);
}

.nav-list li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    margin-left: 3rem;
}

.btn-login,
.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-login {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    background-color: transparent;
}

.btn-login:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.btn-register {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-register:hover {
    background-color: #d81b60;
    /* Darker shade of primary */
    border-color: #d81b60;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    color: white;
}

.btn-login i,
.btn-register i {
    margin-right: 0.8rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-icon {
    display: block;
    position: relative;
    width: 3rem;
    height: 2.4rem;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 1.5px;
}

.bar:first-child {
    top: 0;
}

.bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.bar:last-child {
    bottom: 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 40rem;
    height: 100vh;
    background-color: rgba(15, 15, 15, 0.98);
    z-index: 1100;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2.4rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-nav {
    padding: 2rem;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
}

.mobile-nav-list li a {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 1rem;
}

.mobile-nav-list li a:hover {
    color: var(--primary-color);
}

.mobile-actions {
    padding: 2rem;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-mobile-login,
.btn-mobile-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    font-size: 1.6rem;
    width: 100%;
}

.btn-mobile-login {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-mobile-login:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
}

.btn-mobile-register {
    background-color: var(--primary-color);
    color: white;
}

.btn-mobile-register:hover {
    background-color: #d81b60;
    /* Darker shade of primary */
    color: white;
}

/* Footer Styles */
.site-footer {
    background-color: #0a0a0a;
    padding: 6rem 0 3rem;
    position: relative;
    z-index: 10;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 20%, var(--secondary-color) 50%, var(--primary-color) 80%, transparent 100%);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-links-column h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 3rem;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 1.2rem;
}

.footer-links-column ul li a {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links-column ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1rem;
    margin-right: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
}

.footer-links-column ul li a:hover::before {
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.copyright {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.payment-methods {
    display: flex;
    gap: 1.5rem;
}

.payment-methods i {
    font-size: 2.4rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-disclaimer p {
    margin: 0;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 990;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.sticky-btn i {
    margin-right: 0.8rem;
    font-size: 1.6rem;
}

.login-btn {
    background-color: #333333;
    color: var(--text-primary);
}

.login-btn:hover {
    background-color: #444444;
    color: var(--text-primary);
}

.register-btn {
    background-color: var(--primary-color);
    color: white;
}

.register-btn:hover {
    background-color: #d81b60;
    /* Darker shade of primary */
    color: white;
}

.bonus-btn {
    background-color: var(--accent-color);
    color: #333;
}

.bonus-btn:hover {
    background-color: #ffb300;
    /* Darker shade of accent */
    color: #333;
}

/* Media Queries for Header, Footer, and Sticky Buttons */
@media (max-width: 1200px) {
    .nav-list {
        gap: 1.5rem;
    }

    .header-actions {
        margin-left: 2rem;
    }

    .btn-login,
    .btn-register {
        padding: 0.8rem 1.5rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .nav-list {
        gap: 1rem;
    }

    .nav-list li a {
        font-size: 1.5rem;
    }

    .header-actions {
        margin-left: 1.5rem;
    }

    .btn-login,
    .btn-register {
        padding: 0.8rem 1.2rem;
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-logo {
        text-align: center;
        align-items: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-text {
        font-size: 2.4rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .footer-links-column:last-child {
        grid-column: span 2;
        text-align: center;
    }

    .footer-links-column:last-child h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .copyright {
        text-align: center;
    }

    .sticky-btn {
        font-size: 1.4rem;
        padding: 1.2rem 0.5rem;
    }

    .sticky-btn i {
        margin-right: 0.5rem;
    }
}

@media (max-width: 576px) {
    .header-content {
        padding: 1.2rem 0;
    }

    .logo-text {
        font-size: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-column:last-child {
        grid-column: span 1;
    }

    .footer-links-column {
        text-align: center;
    }

    .footer-links-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .site-footer {
        padding: 4rem 0 8rem;
        /* Extra bottom padding for sticky buttons */
    }

    .sticky-btn {
        font-size: 1.2rem;
        padding: 1.2rem 0.3rem;
    }

    .sticky-btn i {
        margin-right: 0.4rem;
        font-size: 1.4rem;
    }
}

/* Base CSS - Theme Setup */
:root {
    /* Dark Mode Color Palette */
    --primary-color: #e91e63;
    --secondary-color: #00bcd4;
    --accent-color: #ffc107;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --bg-card-hover: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #333333;
    /* Font Settings */
    --heading-font: 'Prompt', sans-serif;
    --body-font: 'Sarabun', sans-serif;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    /* 10px base for easier rem calculations */
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Container - Site Width Constraint */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.4rem;
    border-radius: 0.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.btn i {
    margin-right: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #d81b60;
    /* Darker shade of primary */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
}

/* Hero Section Styles */
.hero-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/ufa911 (4).webp') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    padding-top: 100px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    font-size: 4.2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-content h1::after {
    content: '';
    display: block;
    width: 8rem;
    height: 0.4rem;
    background: var(--primary-color);
    margin-top: 2rem;
    border-radius: 0.2rem;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 50%;
}

.hero-image img {
    border-radius: 1.2rem;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(800px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(800px) rotateY(-5deg);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -3%;
    left: -3%;
    width: 30%;
    height: 30%;
    background: var(--primary-color);
    opacity: 0.7;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 40%;
    height: 40%;
    background: var(--secondary-color);
    opacity: 0.7;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }

    .hero-section {
        padding: 6rem 0;
    }

    .hero-content h1 {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h1::after {
        width: 6rem;
        margin-top: 1.5rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 8rem 0;
    background-color: #0a0a0a;
    /* Slightly darker than the main background */
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(0, 188, 212, 0.05) 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
}

.section-header h2 {
    color: var(--text-primary);
    font-size: 3.2rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.4rem;
    background: var(--accent-color);
    border-radius: 0.2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.about-text {
    padding: 2rem;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 1.2rem;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    background-color: var(--bg-card);
    border-radius: 1.2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-card-hover);
}

.feature-icon {
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    margin-bottom: 2rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-cta {
    text-align: center;
    margin-top: 5rem;
}

.btn-accent {
    background-color: var(--accent-color);
    color: #333;
    font-size: 1.8rem;
    padding: 1.5rem 3.5rem;
}

.btn-accent:hover {
    background-color: #ffb300;
    /* Darker shade of accent */
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 193, 7, 0.3);
}

/* Media Queries for About Section */
@media (max-width: 992px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 6rem 0;
    }

    .about-content {
        gap: 3rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        padding: 2.5rem 1.5rem;
    }

    .feature-icon {
        width: 6rem;
        height: 6rem;
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 5.5rem;
        height: 5.5rem;
        font-size: 2rem;
    }

    .about-cta {
        margin-top: 3rem;
    }

    .btn-accent {
        width: 100%;
        font-size: 1.6rem;
        padding: 1.2rem 2rem;
    }
}

/* Services Section Styles */
.services-section {
    padding: 8rem 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(233, 30, 99, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.services-intro p {
    font-size: 1.8rem;
    line-height: 1.8;
}

.services-intro strong,
.services-extra strong,
.services-conclusion strong {
    color: var(--primary-color);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.service-item {
    background-color: var(--bg-card);
    border-radius: 1.2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 12rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
}

.service-content {
    padding: 3rem;
    flex: 1;
}

.service-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-content p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.6rem;
    line-height: 1.7;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-service i {
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.btn-service:hover {
    color: var(--primary-color);
}

.btn-service:hover i {
    transform: translateX(5px);
}

.services-extra {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 4rem;
    align-items: center;
    margin: 6rem 0;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 1.2rem;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.extra-content p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.7;
}

.extra-content p:last-child {
    margin-bottom: 0;
}

.extra-image {
    position: relative;
}

.extra-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.extra-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 70%;
    height: 70%;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
}

.services-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 1.2rem;
    position: relative;
    z-index: 1;
}

.services-conclusion p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1.6rem 3.5rem;
    font-size: 1.8rem;
}

/* Animation for service items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    animation: fadeInUp 0.6s ease forwards;
}

.service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item:nth-child(3) {
    animation-delay: 0.4s;
}

.service-item:nth-child(4) {
    animation-delay: 0.6s;
}

/* Media Queries for Services Section */
@media (max-width: 1200px) {
    .services-grid {
        gap: 2.5rem;
    }

    .service-icon {
        width: 10rem;
        font-size: 3rem;
    }

    .service-content {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-extra {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }

    .extra-image {
        order: -1;
    }

    .service-item {
        animation-delay: 0s !important;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 6rem 0;
    }

    .services-intro {
        margin-bottom: 4rem;
    }

    .service-item {
        flex-direction: column;
    }

    .service-icon {
        width: 100%;
        height: 10rem;
    }

    .service-content {
        padding: 2rem;
    }

    .services-extra {
        padding: 2.5rem;
        margin: 4rem 0;
    }

    .services-conclusion {
        padding: 2.5rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 5rem 0;
    }

    .services-intro p {
        font-size: 1.6rem;
    }

    .service-content h3 {
        font-size: 2rem;
    }

    .service-content p {
        font-size: 1.5rem;
    }

    .services-extra {
        padding: 2rem;
    }

    .extra-content p {
        font-size: 1.5rem;
    }

    .services-conclusion {
        padding: 2rem;
    }

    .services-conclusion p {
        font-size: 1.6rem;
    }

    .btn-large {
        width: 100%;
        padding: 1.4rem 2rem;
    }
}

/* Diverse Services Section Styles */
.diverse-services-section {
    padding: 8rem 0;
    background-color: #0e0e0e;
    position: relative;
    z-index: 1;
}

.diverse-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" /><circle cx="50" cy="50" r="1" fill="%23333" opacity="0.3" /></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: -1;
}

.diverse-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
    align-items: center;
}

.text-content {
    padding: 2rem;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--secondary-color);
}

.text-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.6rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.text-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.text-content a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-content a:hover {
    color: var(--primary-color);
}

.services-image {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: perspective(800px) rotateY(15deg);
    transition: transform 0.5s ease;
}

.services-image:hover {
    transform: perspective(800px) rotateY(5deg);
}

.services-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.services-image:hover img {
    transform: scale(1.05);
}

.services-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5rem;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.diverse-services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 6rem 0;
}

.ds-card {
    background-color: var(--bg-card);
    border-radius: 1.2rem;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 5px solid transparent;
}

.ds-card:nth-child(1) {
    border-top-color: var(--primary-color);
}

.ds-card:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.ds-card:nth-child(3) {
    border-top-color: var(--accent-color);
}

.ds-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-card-hover);
}

.ds-card-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2.5rem;
    font-size: 3rem;
}

.ds-card:nth-child(1) .ds-card-icon {
    color: var(--primary-color);
}

.ds-card:nth-child(2) .ds-card-icon {
    color: var(--secondary-color);
}

.ds-card:nth-child(3) .ds-card-icon {
    color: var(--accent-color);
}

.ds-card h3 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: var(--text-primary);
}

.ds-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.5rem;
}

.diverse-services-conclusion {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 1.2rem;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.diverse-services-conclusion p {
    margin-bottom: 2rem;
    font-size: 1.7rem;
    line-height: 1.8;
}

.diverse-services-conclusion strong {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-container {
    margin-top: 3rem;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem 3.5rem;
    font-size: 1.7rem;
    border-radius: 5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(233, 30, 99, 0.4);
    color: white;
}

.btn-gradient i {
    margin-right: 1rem;
}

/* Animation for cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ds-card {
    opacity: 0;
    animation: slideInUp 0.5s ease forwards;
}

.ds-card:nth-child(1) {
    animation-delay: 0.1s;
}

.ds-card:nth-child(2) {
    animation-delay: 0.3s;
}

.ds-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Media Queries for Diverse Services Section */
@media (max-width: 1200px) {
    .diverse-services-grid {
        gap: 4rem;
    }

    .diverse-services-cards {
        gap: 2.5rem;
    }

    .ds-card {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .diverse-services-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .services-image {
        max-width: 600px;
        margin: 0 auto;
        transform: perspective(800px) rotateY(0);
    }

    .diverse-services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .ds-card:nth-child(3) {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .ds-card {
        animation-delay: 0.1s !important;
    }
}

@media (max-width: 768px) {
    .diverse-services-section {
        padding: 6rem 0;
    }

    .diverse-services-cards {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 4rem 0;
    }

    .ds-card:nth-child(3) {
        grid-column: span 1;
    }

    .ds-card {
        padding: 2.5rem;
        text-align: center;
    }

    .ds-card-icon {
        width: 7rem;
        height: 7rem;
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .ds-card h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .diverse-services-conclusion {
        padding: 3rem;
    }
}

@media (max-width: 576px) {
    .diverse-services-section {
        padding: 5rem 0;
    }

    .text-content {
        padding: 2rem 1.5rem;
    }

    .text-content p {
        font-size: 1.5rem;
    }

    .services-badge {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
    }

    .ds-card {
        padding: 2rem;
    }

    .ds-card-icon {
        width: 6rem;
        height: 6rem;
        font-size: 2.2rem;
    }

    .ds-card h3 {
        font-size: 1.8rem;
    }

    .ds-card p {
        font-size: 1.4rem;
    }

    .diverse-services-conclusion {
        padding: 2.5rem 2rem;
    }

    .diverse-services-conclusion p {
        font-size: 1.5rem;
    }

    .btn-gradient {
        width: 100%;
        padding: 1.3rem 2rem;
        font-size: 1.6rem;
    }
}

/* Deposit & Withdrawal Section Styles */
.deposit-withdrawal-section {
    padding: 8rem 0;
    background-color: #111111;
    position: relative;
    overflow: hidden;
}

.deposit-withdrawal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.05) 0%, rgba(0, 0, 0, 0) 40%), radial-gradient(circle at 80% 80%, rgba(0, 188, 212, 0.05) 0%, rgba(0, 0, 0, 0) 40%);
    z-index: 0;
}

.deposit-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.deposit-intro p {
    font-size: 1.8rem;
    line-height: 1.8;
}

.deposit-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.deposit-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.feature-image {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.feature-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: var(--accent-color);
    color: #333;
    padding: 0.8rem 1.6rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-block {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    background-color: rgba(30, 30, 30, 0.5);
    padding: 3rem;
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.4rem;
    color: white;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

.feature-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.feature-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.steps-container {
    background-color: rgba(30, 30, 30, 0.5);
    padding: 3rem;
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.steps-container h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-primary);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: steps;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.steps-list li::after {
    content: '';
    position: absolute;
    top: 4rem;
    left: 1.8rem;
    width: 0.2rem;
    height: calc(100% - 2rem);
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    z-index: 0;
}

.steps-list li:last-child::after {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 3.8rem;
    height: 3.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    position: relative;
    z-index: 1;
}

.step-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    padding: 0.8rem 0;
}

.step-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.deposit-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background-color: var(--bg-card);
    border-radius: 1.2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-card-hover);
}

.advantage-icon {
    width: 7rem;
    height: 7rem;
    background-color: rgba(233, 30, 99, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.advantage-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.advantage-card p {
    color: var(--text-secondary);
    font-size: 1.5rem;
    line-height: 1.7;
    margin: 0;
}

.advantage-card strong {
    color: var(--primary-color);
    font-weight: 700;
}

.deposit-conclusion {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 1.2rem;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.deposit-conclusion p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.deposit-conclusion strong {
    color: var(--primary-color);
    font-weight: 700;
}

.conclusion-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn-deposit {
    background-color: var(--secondary-color);
    color: white;
    padding: 1.4rem 2.8rem;
    font-size: 1.6rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

.btn-deposit:hover {
    background-color: #00a5bb;
    /* Darker shade of secondary */
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 188, 212, 0.4);
    color: white;
}

.btn-register {
    background-color: var(--primary-color);
    color: white;
    padding: 1.4rem 2.8rem;
    font-size: 1.6rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.btn-register:hover {
    background-color: #d81b60;
    /* Darker shade of primary */
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(233, 30, 99, 0.4);
    color: white;
}

/* Animation for advantages */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.advantage-card {
    opacity: 0;
    animation: fadeInScale 0.5s ease forwards;
}

.advantage-card:nth-child(1) {
    animation-delay: 0.1s;
}

.advantage-card:nth-child(2) {
    animation-delay: 0.3s;
}

.advantage-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Media Queries for Deposit Section */
@media (max-width: 1200px) {
    .deposit-features {
        gap: 4rem;
    }

    .deposit-advantages {
        gap: 2.5rem;
    }

    .feature-block {
        padding: 2.5rem;
    }

    .steps-container {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .deposit-features {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .feature-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .deposit-advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .advantage-card:nth-child(3) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .advantage-card {
        animation-delay: 0.1s !important;
    }
}

@media (max-width: 768px) {
    .deposit-withdrawal-section {
        padding: 6rem 0;
    }

    .deposit-intro p {
        font-size: 1.6rem;
    }

    .feature-block {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .deposit-advantages {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .advantage-card:nth-child(3) {
        grid-column: span 1;
    }

    .steps-list li {
        gap: 1.5rem;
    }

    .deposit-conclusion {
        padding: 3rem;
    }

    .conclusion-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .btn-deposit,
    .btn-register {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .deposit-withdrawal-section {
        padding: 5rem 0;
    }

    .deposit-intro {
        margin-bottom: 4rem;
    }

    .deposit-intro p {
        font-size: 1.5rem;
    }

    .feature-icon {
        width: 5rem;
        height: 5rem;
        font-size: 2rem;
    }

    .feature-text h3 {
        font-size: 2rem;
    }

    .feature-text p {
        font-size: 1.5rem;
    }

    .steps-container h3 {
        font-size: 2rem;
    }

    .step-number {
        width: 3.2rem;
        height: 3.2rem;
        font-size: 1.6rem;
    }

    .step-content p {
        font-size: 1.4rem;
    }

    .advantage-icon {
        width: 6rem;
        height: 6rem;
        font-size: 2.4rem;
    }

    .advantage-card h3 {
        font-size: 1.8rem;
    }

    .advantage-card p {
        font-size: 1.4rem;
    }

    .deposit-conclusion p {
        font-size: 1.6rem;
    }
}

/* Strengths & Weaknesses Section Styles */
.strengths-weaknesses-section {
    padding: 8rem 0;
    background-color: #0c0c0c;
    position: relative;
    overflow: hidden;
}

.strengths-weaknesses-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, rgba(233, 30, 99, 0.05) 100%);
    z-index: 0;
}

.strengths-weaknesses-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(225deg, rgba(0, 0, 0, 0) 0%, rgba(0, 188, 212, 0.05) 100%);
    z-index: 0;
}

.sw-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sw-intro p {
    font-size: 1.8rem;
    line-height: 1.8;
}

.sw-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.sw-tabs {
    position: relative;
    z-index: 1;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    max-width: 1100px;
    margin: 0 auto 5rem;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-button {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--heading-font);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tab-button i {
    font-size: 1.8rem;
}

.tab-button.active {
    color: var(--text-primary);
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background-color 0.3s ease;
}

.tab-button.active::after {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.tab-button:first-child.active::after {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.tab-button:last-child.active::after {
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
}

.tab-button:hover {
    color: var(--text-primary);
}

.tabs-content {
    padding: 2rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

#strengths h3 {
    color: #4caf50;
    /* Green for strengths */
}

#weaknesses h3 {
    color: #f44336;
    /* Red for weaknesses */
}

.tab-panel h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 1.5px;
}

#strengths h3::after {
    background: linear-gradient(to right, #4caf50, var(--accent-color));
}

#weaknesses h3::after {
    background: linear-gradient(to right, #f44336, var(--accent-color));
}

.strength-list,
.weakness-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strength-list li,
.weakness-list li {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-list li {
    background-color: rgba(76, 175, 80, 0.05);
    border-left: 4px solid #4caf50;
}

.weakness-list li {
    background-color: rgba(244, 67, 54, 0.05);
    border-left: 4px solid #f44336;
}

.strength-list li:hover,
.weakness-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.list-icon {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.strength-list .list-icon {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.weakness-list .list-icon {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.list-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.strength-list .list-content h4 {
    color: #4caf50;
}

.weakness-list .list-content h4 {
    color: #f44336;
}

.list-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.list-content strong {
    font-weight: 700;
}

.strength-list .list-content strong {
    color: var(--primary-color);
}

.weakness-list .list-content strong {
    color: var(--secondary-color);
}

.sw-conclusion {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 1.2rem;
    padding: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.sw-conclusion p {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.sw-conclusion p:last-of-type {
    margin-bottom: 3rem;
}

.sw-conclusion strong {
    color: var(--primary-color);
    font-weight: 700;
}

.conclusion-cta {
    margin-top: 3rem;
}

.btn-neon {
    position: relative;
    background-color: transparent;
    color: white;
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5), inset 0 0 10px rgba(233, 30, 99, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.4), transparent);
    transition: left 0.7s ease;
}

.btn-neon:hover {
    color: white;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.8), inset 0 0 20px rgba(233, 30, 99, 0.5);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon i {
    transition: transform 0.3s ease;
}

.btn-neon:hover i {
    transform: translateX(5px);
}

/* Media Queries for Strengths and Weaknesses Section */
@media (max-width: 992px) {
    .tabs-header {
        justify-content: center;
    }

    .tab-button {
        padding: 1.5rem 2.5rem;
    }

    .strength-list li,
    .weakness-list li {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .strengths-weaknesses-section {
        padding: 6rem 0;
    }

    .sw-intro p {
        font-size: 1.6rem;
    }

    .tabs-content {
        padding: 1.5rem;
    }

    .tab-panel h3 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .strength-list li,
    .weakness-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .sw-conclusion {
        padding: 3rem;
    }

    .sw-conclusion p {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .strengths-weaknesses-section {
        padding: 5rem 0;
    }

    .sw-intro p {
        font-size: 1.5rem;
    }

    .sw-tabs {
        padding: 1.5rem;
    }

    .tabs-header {
        flex-direction: column;
        gap: 0.5rem;
        border-bottom: none;
    }

    .tab-button {
        padding: 1.2rem;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid var(--border-color);
    }

    .tab-button::after {
        bottom: 0;
    }

    .tabs-content {
        padding: 1rem 0;
    }

    .tab-panel h3 {
        font-size: 2rem;
    }

    .list-icon {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 1.8rem;
    }

    .list-content h4 {
        font-size: 1.6rem;
    }

    .list-content p {
        font-size: 1.5rem;
    }

    .sw-conclusion {
        padding: 2.5rem 2rem;
    }

    .sw-conclusion p {
        font-size: 1.5rem;
    }

    .btn-neon {
        padding: 1.3rem 2.5rem;
        font-size: 1.6rem;
        width: 100%;
        justify-content: center;
    }
}