/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #1a1a1a;
    border-bottom: 2px solid #c9b079;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c9b079;
}

.cta-button {
    background-color: #c9b079;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b89f6a;
}

/* Main Content */
main h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #c9b079;
    margin-bottom: 10px;
}

main .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

/* Calculator Section */
.calculator-section {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #c9b079;
}

.input-group input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #FFFFFF;
    font-size: 1rem;
}

.input-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
    font-style: italic;
}

.calculate-button {
    grid-column: 1 / -1;
    background-color: #c9b079;
    color: #000000;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calculate-button:hover {
    background-color: #b89f6a;
}

/* Results Section */
.results-section {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.results-section h2 {
    text-align: center;
    color: #c9b079;
    margin-bottom: 20px;
}

.verdict {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
}

.verdict.profitable {
    background-color: #2e7d32;
    color: #FFFFFF;
}

.verdict.not-profitable {
    background-color: #c62828;
    color: #FFFFFF;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #444;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item span {
    font-size: 1.1rem;
}

.cta-section{
    text-align: center;
    margin-top: 30px;
}

/* FAQ Section */
.faq-section h2 {
    text-align: center;
    color: #c9b079;
    margin-bottom: 30px;
}

.faq-item {
    background-color: #1a1a1a;
    margin-bottom: 10px;
    border-radius: 5px;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    color: #c9b079;
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 15px 15px;
    display: none;
}

.faq-answer p {
    margin: 0;
    color: #cccccc;
}

.faq-answer a {
    color: #c9b079;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #888;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 600px) {
    .calculator {
        grid-template-columns: 1fr;
    }

    main h1 {
        font-size: 2rem;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }
}

/* Added Styles for New Sections */
.nav-link {
    color: #c9b079;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFFFFF;
}

.content-section, .investor-section, .cta-banner {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.content-section h2, .investor-section h2, .cta-banner h2 {
    color: #c9b079;
    margin-top: 0;
}

.cta-banner {
    border: 2px solid #c9b079;
}

.text-link {
    color: #c9b079;
    font-weight: bold;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

footer a {
    color: #c9b079;
    text-decoration: none;
}

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

/* Top Banner */
.top-banner {
    background-color: #c9b079;
    color: #000000;
    padding: 10px 0;
    text-align: center;
}

.top-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.top-banner p {
    margin: 0;
    font-size: 1.1rem;
}

.top-banner .cta-button {
    background-color: #000000;
    color: #FFFFFF;
    flex-shrink: 0; /* Prevents the button from shrinking */
}

.top-banner .cta-button:hover {
    background-color: #333333;
}

@media (max-width: 600px) {
    .top-banner .container {
        flex-direction: column;
        gap: 10px;
    }

    .top-banner p {
        font-size: 1rem;
    }
}

/* Actions Section */
.actions-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.actions-section h3 {
    color: #c9b079;
    margin-bottom: 20px;
}

.actions-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.action-button {
    background-color: #333;
    color: #FFFFFF;
    padding: 10px 20px;
    border: 1px solid #555;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.action-button:hover {
    background-color: #444;
    border-color: #777;
}

.action-button.twitter:hover {
    background-color: #1DA1F2;
    border-color: #1DA1F2;
}

.action-button.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
}

.action-button.linkedin:hover {
    background-color: #0A66C2;
    border-color: #0A66C2;
}
