:root {
    --primary-yellow: #FFE600;
    --deep-blue: #002776;
    --green-start: #00B29D;
    --green-end: #007F4E;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-100);
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--green-start), var(--green-end));
    color: var(--white);
    padding: 2rem 0;
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    max-height: 80px;
    width: auto;
}

h1 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
}

/* Section Styles */
section {
    margin: 3rem 0;
}

h2 {
    color: var(--deep-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

/* Card Styles */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.card ul {
    list-style: none;
    margin-top: 1rem;
}

.card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.card li::before {
    content: '•';
    color: var(--green-start);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 1.5rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

th {
    background-color: var(--deep-blue);
    color: var(--white);
    font-weight: 600;
}

tr:hover {
    background-color: var(--gray-100);
    transition: background-color 0.2s ease;
}

/* Investment Info Styles */
.investment-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.highlight {
    color: var(--deep-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Footer Styles */
.footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer .container {
    text-align: center;
}

.logo-trend {
    max-height: 60px;
    margin-bottom: 1rem;
}

.company {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.validity {
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .header .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .table-wrapper {
        margin: 1rem -1rem;
        border-radius: 0;
    }

    th, td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }
}

.logos-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.logo-space {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}
.logo-label {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.3rem;
}
.investment-desc {
    margin-top: 0.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
}
.services-desc {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
}
@media (max-width: 700px) {
    .logos-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    .logo-space {
        min-width: unset;
    }
}

/* Highlight Row Styles */
.highlight-row {
    background-color: var(--primary-yellow) !important;
    font-weight: 600;
}

.highlight-row:hover {
    background-color: #e6cf00 !important;
}

/* Investment Summary Styles */
.investment-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.investment-summary h3 {
    color: var(--deep-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.summary-item {
    text-align: center;
    padding: 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.summary-item:hover {
    border-color: var(--green-start);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.summary-item h4 {
    color: var(--deep-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.summary-item .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-start);
    margin-bottom: 0.5rem;
}

.summary-item p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.summary-item ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.summary-item li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--gray-600);
}

.summary-item li::before {
    content: '✓';
    color: var(--green-start);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive adjustments for summary grid */
@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-item {
        padding: 1rem;
    }
    
    .summary-item .price {
        font-size: 1.5rem;
    }
} 