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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

/* Header */
header.header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

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

.logo {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.3));
}

.brand-name {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 50%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

/* Main Content */
main {
    min-height: calc(100vh - 300px);
    padding: 80px 0;
}

.main-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f39c12, #e74c3c);
}

.main-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 40px;
    font-weight: 500;
}

.main-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.about-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.about-block {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(243, 156, 18, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-block:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.15);
}

.about-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.about-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(10, 10, 20, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    margin-top: auto;
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.footer-about {
    max-width: 300px;
}

.footer-about p {
    margin-top: 16px;
    line-height: 1.6;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        width: 48px;
        height: 48px;
    }

    .brand-name {
        font-size: 24px;
    }

    .main-content {
        padding: 40px 32px;
    }

    .main-content h1 {
        font-size: 36px;
    }

    .about-blocks {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-block {
        padding: 24px;
    }

    .footer-about {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 32px 24px;
    }

    .main-content h1 {
        font-size: 28px;
    }

    .brand-name {
        font-size: 20px;
    }

    .about-section h2 {
        font-size: 24px;
    }
}

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

.about-block {
    animation: fadeInUp 0.6s ease forwards;
}

.about-block:nth-child(2) { animation-delay: 0.1s; }
.about-block:nth-child(3) { animation-delay: 0.2s; }

/* About page specific styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0 60px;
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.2);
}

.mission-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    border-radius: 20px;
}

.mission-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.team-section {
    margin: 60px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.team-member {
    display: flex;
    gap: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.15);
}

.member-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff6b35;
    transition: transform 0.3s ease;
}

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

.member-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffffff;
}

.member-role {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.story-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
}

.story-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
}

.commitment-section {
    margin: 60px 0;
}

.commitment-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.commitment-item {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.15);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.commitment-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.commitment-item p {
    font-size: 14px;
    opacity: 0.9;
}

.future-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(243, 156, 18, 0.15) 100%);
    border-radius: 20px;
}

.future-section h2 {
    margin-bottom: 24px;
}

.future-section p {
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Policy pages specific styles */
.policy-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    text-align: left;
}

.policy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-section a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #f39c12;
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .member-photo img {
        width: 100px;
        height: 100px;
    }
    
    .values-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-about {
        max-width: none;
    }
}