:root {
    --primary-color: #000;
    --secondary-color: #666;
    --accent-color: #0066ff;    
    --background-color: #fff;
    --card-background: #fff;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--secondary-color);
    font-size: 24px;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.partner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.partner-logo {
    height: 40px;
    transition: opacity 0.3s;
}

.partner-name {
    font-size: 32px;
    font-weight: bold;
}

.partner-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .partners {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .partner {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.project-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.project-image:hover {
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pricing-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
}

.features {
    list-style: none;
    margin: 30px 0;
}

.features li {
    margin: 10px 0;
    padding-left: 24px;
    position: relative;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    font-weight: bold;
    padding: 20px;
    background: var(--card-background);
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 20px;
    background: var(--card-background);
    margin-top: 2px;
    border-radius: var(--border-radius);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.role {
    color: var(--secondary-color);
    margin-bottom: 16px;
}

/* Buttons */
.cta-button, .pricing-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-button:hover, .pricing-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .partners {
        flex-wrap: wrap;
    }

    .pricing-grid, .project-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Add this keyframes animation for fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}