/* Reset and base styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #333333;
    --background-color: #ffffff;
    --text-color: #333333;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header styles */
header {
    background-color: var(--background-color);
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    max-width: 150px;
}

/* Hero section */
.hero {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

/* Features section */
.features {
    padding: 4rem 2rem;
}

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

.feature-card {
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

/* Team section */
.team {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Pricing section */
.pricing {
    padding: 4rem 2rem;
}

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

.pricing-card {
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    margin-top: 4rem;
}

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

/* Rocket Animations */
.rocket-bounce {
    animation: rocketFloat 3s ease-in-out infinite;
}

.rocket-container {
    animation: rocketGlow 2s ease-in-out infinite alternate;
}

.floating-1 {
    animation: float1 4s ease-in-out infinite;
}

.floating-2 {
    animation: float2 3.5s ease-in-out infinite;
}

.floating-3 {
    animation: float3 5s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes rocketGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
    }
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-15px) translateX(10px);
        opacity: 1;
    }
    66% {
        transform: translateY(-5px) translateX(-5px);
        opacity: 0.8;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) translateX(-10px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-10px) translateX(15px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-25px) translateX(5px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-15px) translateX(-10px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature-grid,
    .team-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
