@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Base styles */
main {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    main {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

a {
    transition: color 0.2s ease;
}

a:hover {
    color: #1e40af;
}

h1 {
    font-size: 2.25rem;
    font-weight: bold;
    margin: 1.5rem;
    color: #1e40af;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem;
    color: #1e40af;
}

@media (min-width: 1024px) {
    h2 {
        font-size: 2.25rem;
    }
}

h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0.5rem;
    color: #1e40af;
}

@media (min-width: 1024px) {
    h3 {
        font-size: 1.875rem;
    }
}

p, li {
    font-size: 1.125rem;
}

/* Form styles - from original globals.css */
.formcarry-container {
    box-sizing: border-box;
    margin: 40px auto 0 auto;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.01em;
    width: 100%;
    max-width: 400px;
}

.formcarry-container * {
    box-sizing: border-box;
}

.formcarry-container label {
    display: block;
    cursor: pointer;
}

.formcarry-container .formcarry-block:not(:first-child) {
    margin-top: 16px;
}

.formcarry-container input,
.formcarry-container textarea,
.formcarry-container select {
    margin-top: 4px;
    width: 100%;
    height: 42px;
    border: 1px solid #eceff9;
    color: #0e0b3d;
    border-radius: 6px;
    padding: 8px 12px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: 125ms background, 125ms color, 125ms box-shadow;
}

.formcarry-container textarea {
    min-height: 188px;
    max-width: 100%;
    padding-top: 12px;
}

.formcarry-container input::placeholder,
.formcarry-container textarea::placeholder,
.formcarry-container select::placeholder {
    color: #b3b8d0;
}

.formcarry-container input:hover,
.formcarry-container textarea:hover,
.formcarry-container select:hover {
    border-color: #dde0ee;
    background-color: #f7f9fc;
}

.formcarry-container input:focus,
.formcarry-container textarea:focus,
.formcarry-container select:focus {
    background-color: #fff;
    border-color: #1463ff;
    box-shadow: rgba(20, 99, 255, 0.08) 0px 0px 0px 3px;
    outline: none;
}

.formcarry-container button {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.02em;
    height: 42px;
    line-height: 40px;
    width: 100%;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #1463ff;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: 125ms all;
}

.formcarry-container button:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), #1463ff;
}

.formcarry-container button:focus {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #1463ff;
    box-shadow: 0px 0px 0px 3px rgba(20, 99, 255, 0.12);
}

.break-all {
    word-break: break-all;
}

.underline {
    text-decoration: underline;
}

.list-disc {
    list-style-type: disc;
}

.list-inside {
    list-style-position: inside;
}

.text-center {
    text-align: center;
}