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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideInLeft 0.6s ease-out;
}

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

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0f4c75 0%, #10b981 100%);
    transition: width 0.3s;
}

nav a:hover {
    color: #0f4c75;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero (Home) */
.hero {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5f7a 50%, #10b981 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .tagline {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Features */
.features {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

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

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 24px rgba(15, 76, 117, 0.2);
    border-top-color: #10b981;
}

.feature-card h3 {
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
}

/* Why Biddo */
.why-biddo {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
    padding: 4rem 2rem;
}

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

.why-biddo h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

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

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    transition: all 0.3s;
    opacity: 0;
    animation: slideInRight 0.6s ease-out forwards;
}

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

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

.benefit-item h4 {
    color: #0f4c75;
    margin-bottom: 0.5rem;
}

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

/* Pain Points */
.pain-points {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.pain-points h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.pain-points-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pain-point {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.pain-point:nth-child(1) { animation-delay: 0.1s; }
.pain-point:nth-child(2) { animation-delay: 0.2s; }
.pain-point:nth-child(3) { animation-delay: 0.3s; }
.pain-point:nth-child(4) { animation-delay: 0.4s; }
.pain-point:nth-child(5) { animation-delay: 0.5s; }
.pain-point:nth-child(6) { animation-delay: 0.6s; }
.pain-point:nth-child(7) { animation-delay: 0.7s; }
.pain-point:nth-child(8) { animation-delay: 0.8s; }

.pain-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2);
}

.pain-point h4 {
    color: #ea580c;
    margin-bottom: 0.5rem;
}

.pain-point p {
    color: #64748b;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #10b981;
}

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

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

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #10b981;
    transform: translateX(5px);
}

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

.contact-info {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    border-radius: 8px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info a {
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-info a:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

/* Contact Page */
.page-header {
    background: linear-gradient(135deg, #0f4c75 0%, #1a5f7a 50%, #10b981 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.contact-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.contact-info-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    animation: slideInLeft 0.8s ease-out;
}

.contact-info-card h2 {
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }

.info-item:last-child {
    border-bottom: none;
}

.info-item h3 {
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.info-item a {
    color: #0f4c75;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.info-item a:hover {
    color: #10b981;
    text-decoration: underline;
    transform: translateX(5px);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideInRight 0.8s ease-out;
    transition: all 0.3s;
}

.contact-form:hover {
    box-shadow: 0 8px 16px rgba(15, 76, 117, 0.15);
}

.contact-form h2 {
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0f4c75;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(15, 76, 117, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(15, 76, 117, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.office-locations {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.office-locations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

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

.office-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

.office-card h3 {
    color: #0f4c75;
    margin-bottom: 1rem;
}

.office-card p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* About Page */
.about-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.about-intro h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
    padding: 4rem 2rem;
}

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

.story-section h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.story-text {
    color: #64748b;
    line-height: 1.8;
    animation: slideInLeft 0.8s ease-out;
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-image {
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    height: 300px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: slideInRight 0.8s ease-out;
    box-shadow: 0 8px 16px rgba(15, 76, 117, 0.2);
}

.values-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid #10b981;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

.value-card h3 {
    color: #0f4c75;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.8;
}

.team-section {
    background: #f1f5f9;
    padding: 4rem 2rem;
}

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

.team-section h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(15, 76, 117, 0.2);
}

.team-card h3 {
    color: #0f4c75;
    margin-bottom: 0.5rem;
}

.team-card .role {
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-card p {
    color: #64748b;
    font-size: 0.9rem;
}

.facts-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.facts-section h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.fact-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.fact-card:nth-child(1) { animation-delay: 0.1s; }
.fact-card:nth-child(2) { animation-delay: 0.2s; }
.fact-card:nth-child(3) { animation-delay: 0.3s; }
.fact-card:nth-child(4) { animation-delay: 0.4s; }

.fact-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(15, 76, 117, 0.15);
}

.fact-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.fact-label {
    color: #64748b;
    font-size: 1.1rem;
}

.partners-section {
    background: #f8fafc;
    padding: 4rem 2rem;
}

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

.partners-section h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0f4c75 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.partners-text {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }
}

