:root {
    --primary-color: #dc2626;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --bg-gradient-from: #ffffff;
    --bg-gradient-to: #f3f4f6;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    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.5;
    background: linear-gradient(to bottom, var(--bg-gradient-from), var(--bg-gradient-to));
    min-height: 100vh;
    color: var(--text-primary);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Partner Brands */
.brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.brand-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: scale(1.05);
}

.card-content {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 2rem;
    text-align: center;
}

.card-content img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-secondary);
}

/* Services Section */
.services {
    margin-bottom: 5rem;
}

.services h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.service-card .icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.contact h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-info {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-item:hover {
    color: var(--primary-color);
}

.contact-item .icon {
    width: 1.5rem;
    height: 1.5rem;
}