/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Prompt', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Thai Font Support */
:lang(th) {
    font-family: 'Prompt', sans-serif;
}

/* Apply to specific elements with Thai text */
*:lang(th),
.thai-text {
    font-family: 'Prompt', sans-serif;
}

/* Mixed content - Thai with English fallback */
h1, h2, h3, h4, h5, h6, p, span, div {
    font-family: 'Inter', 'Prompt', sans-serif;
}

/* Video Intro Styles */
.video-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.video-intro.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.video-intro video {
    width: auto;
    height: 40vh;
    max-width: 90%;
    object-fit: contain;
}

/* Loading Bar Styles */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 200px;
}

.loading-bar {
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background-color: #000000;
    width: 0%;
    border-radius: 3px;
    animation: loadingAnimation 3s ease-out forwards;
}

@keyframes loadingAnimation {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

.loading-text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.main-content.visible {
    opacity: 1;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation - Fixed */
.main-navigation {
    margin-left: auto;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1002;
}

.menu-line {
    width: 25px;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Full Screen Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    padding: 20px;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

.mobile-nav-list li:nth-child(1) .mobile-nav-link { animation-delay: 0.1s; }
.mobile-nav-list li:nth-child(2) .mobile-nav-link { animation-delay: 0.2s; }
.mobile-nav-list li:nth-child(3) .mobile-nav-link { animation-delay: 0.3s; }
.mobile-nav-list li:nth-child(4) .mobile-nav-link { animation-delay: 0.4s; }
.mobile-nav-list li:nth-child(5) .mobile-nav-link { animation-delay: 0.5s; }
.mobile-nav-list li:nth-child(6) .mobile-nav-link { animation-delay: 0.6s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 100px 40px 40px;
    overflow: hidden;
}

/* Floating Characters */
.floating-characters {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.character {
    position: absolute;
    width: 120px;
    height: auto;
    opacity: 0;
}

.character-blue {
    top: 15%;
    left: 10%;
}

.character-yellow {
    top: 20%;
    right: 15%;
}

.character-green {
    bottom: 20%;
    left: 12%;
}

.character-red {
    bottom: 25%;
    right: 10%;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 1200px;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-title .letter {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.hero-title .space {
    display: inline-block;
    width: 0.3em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.divider-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.divider-dot {
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 50%;
    margin: 0 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Common Section Title Style */
.section-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -2px;
    position: relative;
}

.section-title .title-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.section-title .title-letter.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title .space {
    display: inline-block;
    width: 0.3em;
}

/* About Section */
.about-section {
    padding: 40px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #ffffff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Text */
.about-text {
    opacity: 0;
    transform: translateX(-30px);
}

.about-text.visible {
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-description {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(0, 0, 0, 0.8);
}

.about-description strong {
    font-weight: 700;
    color: #000000;
}

/* Detail Items */
.about-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    position: relative;
    padding-left: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.detail-item.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.detail-item:nth-child(1) { animation-delay: 0.2s; }
.detail-item:nth-child(2) { animation-delay: 0.4s; }
.detail-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.detail-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}

.detail-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}

/* About Image - Desktop */
.about-image {
    opacity: 0;
    transform: translateX(30px);
    display: flex;
    justify-content: flex-end;
}

.about-image.visible {
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.about-img {
    width: 85%;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: auto;
    display: block;
}

.about-img:hover {
    transform: scale(1.02);
}

.image-decoration {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.image-decoration.circle-top {
    top: -30px;
    left: -20px;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.image-decoration.triangle-bottom {
    bottom: -20px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(0, 0, 0, 0.05);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Core Values Section */
.values-section {
    padding: 40px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.value-character {
    margin-bottom: 20px;
}

.value-img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.value-card:hover .value-img {
    transform: scale(1.1) rotate(5deg);
}

.value-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}

/* Value Stacking Section */
.stacking-section {
    padding: 40px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.stacking-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.stacking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stacking-text {
    opacity: 0;
    transform: translateX(-30px);
}

.stacking-text.visible {
    animation: slideInLeft 0.8s ease-out forwards;
}

.stacking-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.stacking-description {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.8);
}

.stacking-subdescription {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.6);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.stacking-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
}

.stacking-image.visible {
    animation: slideInRight 0.8s ease-out forwards;
}

.stacking-character {
    width: 570px;
    height: auto;
    position: relative;
    z-index: 2;
}

.search-decoration {
    position: absolute;
    width: 390px;
    height: 390px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.search-decoration::before {
    content: '';
    position: absolute;
    top: 55px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* How We Work Section */
.work-section {
    padding: 40px 40px;
    min-height: 100vh;
    background-color: #ffffff;
}

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

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-item.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Timeline Content - Updated */
.timeline-content {
    width: calc(50% - 60px);
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: right;
    flex-direction: row-reverse;
}

.timeline-character {
    flex-shrink: 0;
}

.timeline-img {
    width: 110px;
    height: auto;
    transition: transform 0.3s ease;
}

.timeline-content:hover .timeline-img {
    transform: scale(1.1) rotate(5deg);
}

.timeline-text {
    flex: 1;
}

.timeline-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}

.timeline-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}

/* Trusted By Section */
.trusted-section {
    padding: 60px 40px;
    background-color: rgba(0, 0, 0, 0.02);
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trusted-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.6);
}

.logo-carousel {
    position: relative;
    height: 100px;
}

.logo-group {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.logo-group.active {
    opacity: 1;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    background-color: #ffffff;
    color: #000000;
}

/* Section Characters Image */
.section-characters {
    text-align: center;
    /* margin-bottom: 60px; */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.section-character-img {
    width: auto;
    height: 80px;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.section-characters:hover .section-character-img {
    transform: scale(1.05);
}

.contact-char .section-character-img {
    height: 350px;
}
.faq-char .section-character-img {
    height: 390px;
}

/* FAQ Section */
.faq-section {
    padding: 40px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.faq-list {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background-color: rgba(0, 0, 0, 0.02);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.01);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 30px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
}

/* Contact Section */
.contact-section {
    padding: 60px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, rgba(0, 0, 0, 0.02) 100%);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    position: relative;
}

.contact-subtitle {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 60px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.05);
}

.social-link svg {
    width: 40px;
    height: 40px;
}

.social-link span {
    font-size: 14px;
    font-weight: 500;
}

.contact-info {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
}

.contact-info p {
    margin-bottom: 10px;
}
.faq-char{
    position: absolute;
    bottom: -470px;
    left: 100px;
}
.contact-char{
    position: absolute;
    bottom: -400px;
    left: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-section {
        padding: 100px 20px 40px;
    }
    
    .character {
        width: 60px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        letter-spacing: -1px;
    }
    
    .section-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: 60px;
    }
    
    .about-content,
    .stacking-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-img {
        width: 100%;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-number {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 80px !important;
        text-align: left !important;
        flex-direction: column !important;
    }
    
    .timeline-img {
        width: 120px;
    }
    
    .section-character-img {
        height: 80px;
    }
    
    .logo-group {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .social-links {
        gap: 20px;
    }
    .search-decoration {
        position: absolute;
        width: 250px;
        height: 250px;
        border: 3px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        animation: rotate 20s linear infinite;
    }

    .search-decoration::before {
        content: '';
        position: absolute;
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
    }

    .faq-char{
        bottom: -310px;
        left: 0px;
    }
    .contact-char{
        bottom: -290px;
        left: 0;
    }
}

@media (max-width: 480px) {
    .section-divider {
        margin: 20px 0;
    }
    
    .divider-line {
        width: 60px;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .logo-group {
        grid-template-columns: repeat(2, 1fr);
    }
}