:root {
    --primary-blue: #2563eb;
    --text-dark: #1f2937;
    --bg-light: #f3f6ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-light);
}

.decoration-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-blue) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    z-index: 0;
}

.dots-1 {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
}

.dots-2 {
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
}

.header {
    background-color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--primary-blue);
}

.hero-text p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.services h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.services-list {
    list-style: none;
    margin-bottom: 2rem;
}

.services-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.services-list li::before {
    content: "•";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.deliverables {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.deliverables h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}