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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f0f0f0;
    color: #1a2332;
    line-height: 1.6;
}

p {
    margin-bottom: 1rem;
}

/* Use Poppins for headings for a friendlier, modern look */
h1,
h2,
h3 {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
}

header {
    background-color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .content {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 50px;
}

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

.hero {
    background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #00ffff, #0000ff, #8b00ff);
    padding: 10px;
    border-radius: 24px;
    margin-bottom: 3rem;
}

.hero-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a2332;
}

.hero-text h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a2332;
}

.hero-text p {
    font-size: 1.125rem;
    color: #333;
}

.section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2332;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Terms page specific styles */
.section h2 {
    font-size: 1.5rem;
    color: #1a2332;
    margin: 2rem 0 1rem;
}

.section h2:first-of-type {
    margin-top: 3rem;
}

.section p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section ul,
.section ol {
    margin: 0 0 1rem 2rem;
    list-style-position: outside;
}

.section li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    padding-left: 0.5rem;
}

.cta-box {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle.green {
    background: linear-gradient(135deg, #7bed9f, #2ed573);
}

.icon-circle.blue {
    background: linear-gradient(135deg, #70a1ff, #5f89d8);
}

.icon-circle.darkblue {
    background: linear-gradient(135deg, #1a2332, #2f3542);
}

.icon-circle.yellow {
    background: linear-gradient(135deg, #ffa502, #ff6348);
}

.icon-circle.lime {
    background: linear-gradient(135deg, #7bed9f, #70a1ff);
}

.icon-circle.pink {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
}

.icon-circle.cyan {
    background: linear-gradient(135deg, #4bcffa, #14b8a6);
}

.cta-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.cta-text p {
    font-size: 1rem;
    color: #555;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #4169e1;
    border: 2px solid #4169e1;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #4169e1;
    color: white;
}

.btn:disabled {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.btn:disabled:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: #999;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #1a2332;
}

.step p {
    color: #555;
}

.pricing-table {
    margin: 2rem 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-label {
    font-weight: 600;
    color: #1a2332;
}

.pricing-value {
    font-weight: 600;
    color: #1a2332;
}

.guarantee-box {
    background-color: #fff9e6;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-text {
    color: #333;
}

.guarantee-text a {
    color: #4169e1;
    text-decoration: none;
    font-weight: 600;
}

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

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.feature p {
    color: #555;
    line-height: 1.6;
}

.memories-list {
    margin-top: 1.5rem;
}

.memories-list ul {
    list-style: none;
}

.memories-list li {
    padding: 0.5rem 0;
    color: #333;
    font-size: 1.05rem;
}

.memories-list strong {
    color: #1a2332;
}

.faq-list {
    margin-top: 1.5rem;
}

.faq-list h3 {
    font-size: 2rem;
    color: #1a2332;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.faq-list h3:first-child {
    margin-top: 0;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item strong {
    display: block;
    color: #1a2332;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #555;
    margin-left: 1rem;
}

footer {
    background-color: white;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
}

.header-footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #1a2332;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #4169e1;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-address {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-address strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.footer-address p {
    color: #666;
    font-size: 0.9rem;
}

.seo-section {
    text-align: left;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

.seo-section p {
    margin-bottom: 0.5rem;
}

.pricing-note {
    margin-top: 1.5rem;
    color: #666;
}

.company-info {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.postal-heading {
    margin-top: 2rem;
}

/* Contact form styles */
.contact-intro {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a2332;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4169e1;
}

.contact-form .btn {
    width: 100%;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-content .icon-circle {
        display: none;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .guarantee-box .badge-icon {
        display: none;
    }

    /* Stack each feature so the badge/icon sits above the text on small screens */
    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature .icon-circle {
        margin-bottom: 1rem;
    }
}