/* ====== Base Styles ====== */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    line-height: 1.5;
    color: #333;
}

body {
    background-color: #f9f9f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ====== Header Styles ====== */
header {
    background: linear-gradient(135deg, #2c4b6b 0%, #1a304a 100%);
    color: white;
    padding: 15px 15px 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 100%;
    position: relative;
}

.header-content {
    display: flex;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 5px 0;
}

.logo {
    width: 60px;
    height: auto;
    margin-right: 15px;
    margin-top: 3px;
    transition: transform 0.3s ease;
}

.header-text {
    text-align: left;
    flex: 1;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 2px;
    color: white;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

header p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-weight: 300;
    padding-left: 1px;
    line-height: 1.3;
}

/* ====== Navigation ====== */
nav {
    background-color: #14273e;
    padding: 10px 0;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 10px;
    max-width: 1000px;
    margin: 0 auto;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 6px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 3px;
}

nav ul li a:hover {
    background-color: rgba(255,255,255,0.1);
}

nav ul li a.active {
    background-color: rgba(255,255,255,0.2);
}

/* ====== Main Content Styles ====== */
main {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
    flex: 1;
}

main section {
    background: white;
    padding: 30px;
    margin: 10px auto;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #2c4b6b;
    margin-bottom: 15px;
}

main p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

/* ====== Button Styles ====== */
.btn {
    display: block;
    width: 100%;
    padding: 13px 25px;
    background-color: #3a5a78;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #2c4b6b;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* ====== Home Page Styles ====== */
.home-hero {
    text-align: center;
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.home-hero h2 {
    margin-bottom: 15px;
    line-height: 1.3;
}

.home-hero p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== Services Page Styles ====== */
.pricing-table {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
    gap: 20px;
}

.package {
    flex: 1;
    padding: 25px;
    position: relative;
    text-align: center;
    min-width: 0;
}

.package:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background-color: #eaeaea;
}

.package h3 {
    color: #2c4b6b;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3a5a78;
    margin: 15px 0;
}

.package-details {
    margin-top: 20px;
}

.package-details p {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.package-details ul {
    padding-left: 20px;
    text-align: left;
}

.package-details li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.9rem;
}

.add-on {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    text-align: center;
    border-left: 4px solid #3a5a78;
}

.add-on h3 {
    color: #2c4b6b;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.benefits {
    margin-top: 40px;
}

.benefits h3 {
    color: #2c4b6b;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    color: #3a5a78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.samples-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
}

.samples-note a {
    color: #3a5a78;
    text-decoration: none;
    font-weight: 600;
}

.samples-note a:hover {
    text-decoration: underline;
}

/* ====== Samples Page Styles ====== */
.sample-packages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.sample-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #eaeaea;
}

.sample-card h3 {
    color: #2c4b6b;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.sample-card p {
    margin-bottom: 20px;
    color: #555;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3a5a78;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.download-btn:hover {
    background-color: #2c4b6b;
    transform: translateY(-2px);
}

/* ====== Contact Page Styles ====== */
.contact-section {
    max-width: 700px;
}

.intro-text {
    margin-bottom: 25px !important;
}

.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c4b6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
}

.direct-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.direct-contact h3 {
    color: #2c4b6b;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.direct-contact p {
    margin-bottom: 8px;
}

/* ====== How It Works Page Styles ====== */
.process-section {
    max-width: 800px;
    margin: 0 auto 40px;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background-color: #2c4b6b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #2c4b6b;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.step-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.step-content li {
    margin-bottom: 8px;
    color: #555;
}

.pdf-download {
    text-align: center;
    margin: 50px auto;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 6px;
    border-left: 4px solid #3a5a78;
}

.pdf-download .btn {
    max-width: 300px;
    margin: 0 auto;
}

.small-text {
    font-size: 0.9rem;
    margin-top: 15px;
    color: #666;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #2c4b6b;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

/* ====== Footer Styles ====== */
footer {
    background: #1a304a;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    padding: 0;
}

/* ====== Mobile Optimization ====== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .logo {
        margin: 0 12px 0 0;
        width: 55px;
        margin-top: 2px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    header p {
        font-size: 0.85rem;
    }
    
    nav ul {
        gap: 8px;
    }
    
    nav ul li a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .home-hero {
        padding: 25px 15px;
    }
    
    .cta-buttons {
        max-width: 100%;
    }
    
    .pricing-table {
        flex-direction: column;
        gap: 0;
    }
    
    .package {
        width: 100%;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .package:not(:last-child)::after {
        content: none;
    }
    
    .package:not(:last-child) {
        border-bottom: 1px solid #eaeaea;
    }
    
    .sample-packages {
        flex-direction: column;
    }
    
    .sample-card {
        width: 100%;
    }
    
    main section {
        padding: 25px 20px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
    
    .benefits-list li {
        padding-left: 25px;
    }
    
    /* How It Works Mobile */
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 10px;
    }
    
    .logo {
        width: 50px;
        margin-right: 10px;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    nav ul li a {
        padding: 5px 8px;
        font-size: 0.85rem;
    }
    
    /* How It Works Mobile Small */
    .pdf-download {
        padding: 20px 15px;
    }
}
