/* public/cold-email-style.css */

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

:root {
    --primary-color: #007bff;
    --background-color: #f8f9fa;
    --text-color: #343a40;
    --card-background-color: #ffffff;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Lora', serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--background-color);
}

.container {
    max-width: 900px;
}

.greeting {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}

.highlight {
    background-color: #e7f3ff;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
}

.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

section {
    padding: 4rem 0;
}

.hero .profile-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.problem, .solution {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.illustration {
    flex: 1;
    min-width: 300px;
}

.illustration img {
    width: 100%;
    height: auto;
}

.problem > div, .solution > div {
    flex: 2;
}

.problem ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.problem li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.solution-columns {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 3rem 0;
}

.solution-column h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
}

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

.feature-card {
    background-color: var(--card-background-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card h4 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.comparison {
    text-align: center;
}

.about {
    text-align: center;
}

.what-you-get {
    display: inline-block;
    text-align: left;
    margin: 2rem 0;
}

.what-you-get ul {
    list-style: none;
    padding: 0;
}

.what-you-get li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.closing {
    text-align: center;
}

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

.faq-item {
    background-color: var(--card-background-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

