/* Hero Section */
.hero {
    background-image: url('/portal/assets/imgs/herro.png');
    background-size: cover;
}

/* Features Section */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 24px;
}

.features-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
}

.feature-description {
    color: #4b5563;
}

/* Agents Section */
.agents-section {
    background-color: #f3f4f6;
    padding: 4rem 0;
}

.agents-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.agents-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.agents-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .agents-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.agents-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #4b5563;
}

.agents-list li {
    display: flex;
    align-items: flex-start;
}

.agents-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.agents-button {
    margin-top: 2rem;
    display: inline-block;
    background-color: var(--primary-color);
    text-decoration: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
}

.agents-button:hover {
    background-color: var(--hover-color);
}

.agents-image {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* Sellers Section */
.sellers-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 24px;
}

.sellers-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.sellers-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .sellers-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sellers-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #4b5563;
}

.sellers-list li {
    display: flex;
    align-items: flex-start;
}

.sellers-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.sellers-button {
    margin-top: 2rem;
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
}

.sellers-button:hover {
    background-color: var(--hover-color);
}

.sellers-image {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* General transitions */
.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}