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

:root {
    --primary: hsl(229, 63%, 59%);
    --primary-foreground: hsl(0, 0%, 100%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222.2, 84%, 4.9%);
    --muted: hsl(220, 13%, 95%);
    --muted-foreground: hsl(220, 9%, 46%);
    --border: hsl(220, 13%, 91%);
    --secondary: hsl(229, 63%, 95%);
    --secondary-foreground: hsl(229, 63%, 20%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 1.5rem;
}

.hero-content {
    max-width: 56rem;
    text-align: center;
}

.profile-image-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-foreground);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.creci-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-foreground);
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.creci-link:hover {
    text-decoration: underline;
}

.creci-link svg {
    width: 1rem;
    height: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .contact-links {
        flex-direction: row;
    }
}

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

.contact-link:hover {
    text-decoration: underline;
}

.contact-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.cta-button {
    display: inline-block;
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Agent Info Section */
.agent-info-section {
    padding: 3rem 1.5rem;
    background-color: hsla(220, 13%, 95%, 0.3);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.info-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-card {
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.info-card-content {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon-wrapper {
    padding: 0.75rem;
    background-color: hsla(229, 63%, 59%, 0.1);
    border-radius: 0.75rem;
}

.info-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 1.5rem;
    background-color: var(--background);
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: var(--foreground);
}

.subsection-title:first-of-type {
    margin-top: 0;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.benefit-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.learn-more {
    text-align: center;
    margin-top: 3rem;
}

.learn-more-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.learn-more-link:hover {
    text-decoration: underline;
}