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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    color: #6366f1;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-item {
    padding: 0 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6366f1;
}

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

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

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Mobile First */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(1px);
}

.hero-text {
    color: white;
    width: 100%;
    order: 2;
    margin-top: 20px;
}

.hero-image {
    order: 1;
}

.hero-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    padding: 0 10px;
    word-break: keep-all;
    overflow-wrap: break-word;
    color: #ffffff;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 1px 2px rgba(0, 0, 0, 1);
    letter-spacing: 0.01em;
    text-transform: none;
    font-display: swap;
}

.gradient-text {
    background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(1px);
    opacity: 0.5;
    z-index: -1;
}

.highlight-yellow {
    color: #ffd700;
    font-weight: 600;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 1px 2px rgba(0, 0, 0, 1);
}

.highlight-red {
    color: #ff4444;
    font-weight: 600;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 1px 2px rgba(0, 0, 0, 1);
}

.arrow-down {
    text-align: center;
    margin-top: 1rem;
    animation: bounce 2s infinite;
}

.arrow-down i {
    color: #ffd700;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 1;
    animation: fadeInUp 1s ease 0.2s both;
    padding: 0 20px;
    word-break: keep-all;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.9);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    animation: fadeInUp 1s ease 0.4s both;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 180px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5252, #ff4444);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #6366f1;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    height: auto;
    animation: fadeInRight 1s ease 0.6s both;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

.floating-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 4s ease-in-out infinite;
    width: 110px;
    min-width: 100px;
    max-width: 130px;
    flex: 1;
    margin: 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.floating-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.floating-card h3 {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.floating-card.warning-card h3 {
    color: #ff4444;
    font-weight: 700;
}

.floating-card.info-card h3 {
    color: #ffd700;
    font-weight: 700;
}

.floating-card p {
    font-size: 0.7rem;
    opacity: 0.8;
}

.floating-card.warning-card p {
    color: #ff4444;
    opacity: 1;
    font-weight: 600;
}

.floating-card.info-card p {
    color: #ffd700;
    opacity: 1;
    font-weight: 600;
}

/* Case Examples Section */
.case-examples {
    padding: 80px 0;
    background: #f8fafc;
}

.case-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-item:hover .case-image img {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.placeholder-image span {
    font-size: 1rem;
    font-weight: 500;
}

.case-content {
    padding: 1.5rem;
}

.case-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.case-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 0;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
    text-align: center;
}

.about-text p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    padding: 0 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.8rem;
}

.stat-item p {
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-visual {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.visual-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.visual-card i {
    font-size: 1.5rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
    display: block;
}

.visual-card h4 {
    font-size: 0.8rem;
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.visual-card p {
    font-size: 0.7rem;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #64748b;
}

.contact-form {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff4444, #ff6b6b, #ffd700);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    grid-template-columns: 1fr;
}

.btn-youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #cc0000, #990000);
}

.btn-report {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-report:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706, #b45309);
}

.btn-support {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.cta-buttons .btn i {
    font-size: 1.3rem;
}

.form-footer {
    text-align: center;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.form-footer p {
    color: #6366f1;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-footer i {
    color: #10b981;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.8rem;
    color: #f8fafc;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

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

.footer-section ul li {
    margin-bottom: 0.3rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Desktop Responsive - Mobile First Approach */
@media (min-width: 481px) {
    .hero {
        min-height: 80vh;
        padding: 120px 0 100px;
        background-attachment: scroll; /* 모바일에서 성능 향상 */
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 1.3;
        text-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 1px 2px rgba(0, 0, 0, 1);
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 2rem;
    }
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        border: none;
        padding: 0;
        width: auto;
    }
    
    .nav-item {
        padding: 0;
    }
    
    .hamburger {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
        max-width: 1200px;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-title {
        font-size: 4rem;
        font-weight: 600;
        line-height: 1.2;
        padding: 0;
        text-shadow: 
            0 6px 12px rgba(0, 0, 0, 0.8),
            0 3px 6px rgba(0, 0, 0, 0.9),
            0 1px 3px rgba(0, 0, 0, 1);
    }
    
    .hero-description {
        font-size: 1.2rem;
        padding: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        margin-top: 2.5rem;
    }
    
    .hero-image {
        height: 600px;
        position: relative;
        display: block;
        margin-top: 0;
    }
    
    .floating-card {
        position: absolute;
        padding: 1.5rem 2rem;
        width: 280px;
        min-width: 280px;
        margin: 0;
        flex: none;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(15px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        white-space: nowrap;
    }
    
    .floating-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .floating-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        white-space: nowrap;
    }
    
    .floating-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        white-space: normal;
    }
    
    .floating-card:nth-child(1) {
        top: 50px;
        right: 20px;
        transform: rotate(-5deg);
    }
    
    .floating-card:nth-child(2) {
        top: 220px;
        left: 20px;
        transform: rotate(3deg);
    }
    
    .floating-card:nth-child(3) {
        top: 390px;
        right: 80px;
        transform: rotate(-3deg);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .about {
        padding: 120px 0;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
        padding: 0;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.8;
        padding: 0;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .stat-item h4 {
        font-size: 2.5rem;
    }
    
    .stats-visual {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .visual-card {
        padding: 2rem;
    }
    
    .visual-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .visual-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .visual-card p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .contact {
        padding: 120px 0;
    }
    
    .services {
        padding: 120px 0;
    }
    
    .cta-buttons {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto 2rem;
        gap: 2rem;
    }
}
