/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 20px 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Styles - BIGGER */
.logo-container {
    display: inline-flex;
    align-items: stretch;
    margin-bottom: 55px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
}

.left-box {
    background-color: #2c3e6e;
    color: white;
    padding: 22px 28px;
    border-radius: 8px 0 0 8px;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
}

.p-white {
    color: #ffffff;
}

.h-gold {
    color: #e8c66f;
    margin-left: -2px;
}

.right-box {
    background-color: #ffffff;
    border: 3px solid #2c3e6e;
    border-left: none;
    padding: 22px 35px;
    border-radius: 0 8px 8px 0;
    color: #2c3e6e;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 4px;
    position: relative;
}

.i-star {
    position: relative;
}

.star-icon {
    position: absolute;
    top: 10px;
    left: 78px;
    font-size: 14px;
    color: #e8c66f;
}

/* Main Content */
.content {
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
}

/* Typography - BIGGER */
h1 {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 46px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.description {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    max-width: 700px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-text {
    font-size: 18px;
    color: #666666;
    margin-bottom: 50px;
}

/* Form Styling - WIDER & SHARP CORNERS */
.download-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 28px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    text-align: left;
    letter-spacing: 0.3px;
}

.email-input {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    font-size: 17px;
    font-family: inherit;
    border: 2px solid #d1d5db;
    border-radius: 2px;
    /* SHARP CORNERS */
    outline: none;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
}

.email-input:focus {
    border-color: #2c3e6e;
    box-shadow: 0 0 0 3px rgba(44, 62, 110, 0.08);
}

.email-input::placeholder {
    color: #9ca3af;
}

/* Button Styling - BIGGER */
.download-btn {
    width: 100%;
    background: linear-gradient(180deg, #f7dc96 0%, #eed286 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    padding: 17px 45px;
    font-size: 18px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.download-btn:hover {
    background: linear-gradient(180deg, #eed286 0%, #e5c76f 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.download-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    font-size: 16px;
    color: #555;
}

/* Success Message */
.success-message {
    margin-top: 40px;
    padding: 24px 35px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid #86efac;
}

.success-message p {
    display: block;
    margin: 0;
}

.success-message p:first-child {
    font-size: 20px;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 12px;
}

.sub-success {
    font-size: 15px;
    color: #047857;
    margin-top: 0;
}

/* Contact Section - Professional Dark Blue Design */
.contact-section {
    width: 100%;
    margin-top: 80px;
    padding: 50px 20px 40px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c3e6e 100%);
    text-align: center;
}

.contact-section h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-text {
    font-size: 17px;
    color: #d1d5db;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    font-size: 17px;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-item strong {
    font-weight: 600;
    color: #f7dc96;
}

.contact-item a {
    color: #fcd34d;
    text-decoration: underline;
    text-decoration-color: rgba(252, 211, 77, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.contact-item a:hover {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.6);
}

.copyright {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 40px 16px 20px;
    }

    .logo-container {
        transform: scale(0.85);
        margin-bottom: 40px;
    }

    h1 {
        font-size: 36px;
        margin-bottom: 28px;
    }

    .description,
    .cta-text {
        font-size: 16px;
    }

    .download-form {
        max-width: 100%;
    }

    .email-input {
        height: 52px;
        font-size: 16px;
    }

    .download-btn {
        font-size: 17px;
        padding: 15px 38px;
        min-height: 52px;
    }

    .contact-section h2 {
        font-size: 24px;
    }

    .contact-details {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        transform: scale(0.75);
    }

    h1 {
        font-size: 30px;
    }

    .description,
    .cta-text {
        font-size: 15px;
    }

    .contact-section {
        padding-top: 50px;
    }

    .contact-item {
        font-size: 14px;
    }
}