/* Add this at the very top of your main.css file */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Then add the global font styles */
* {
    font-family: 'Montserrat', sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

button, .button {
    font-weight: 500;
}

input, select, textarea {
    font-weight: 400;
}

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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1 {
    font-size: 24px;
    margin: 0 0 30px 0;
    text-align: center;
    padding: 0;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Layout Containers */
.container {
    flex: 1;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-top: 80px;
}

.form-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* Forms */
.form-group {
    margin-bottom: 25px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    text-align: left;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="tel"],
select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    background-color: white;
}

/* Specific styling for date input to ensure consistent appearance */
input[type="date"] {
    padding-right: 10px; /* Make room for the calendar icon */
}

/* Style the date picker icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 5px;
    margin-right: 5px;
}

/* Buttons */
button,
.button {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 12px;
    margin: 30px 0;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button.secondary {
    background: #6c757d;
}

.button-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.button-group button,
.button-group .button {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    margin: 0;
    font-size: 16px;
}

.button-success {
    background-color: #28a745;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-success:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
    }
    
    .button-group button,
    .button-group .button {
        width: 100%;
    }
}

/* Navigation */
.navbar {
    background: #191919;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 100%;
    overflow-x: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    background: rgba(255,255,255,0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #191919;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 18px;
    }

    /* Hamburger Animation */
    .hamburger.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Dashboard */
.balance-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.card.income { background-color: #28a745; }
.card.expenses { background-color: #dc3545; }
.card.balance { background-color: #007bff; }

.card h2 {
    margin-bottom: 10px;
    font-size: 18px;
}

.card p {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Transactions Table */
.transactions-table {
    width: 100%;
    margin-top: 2rem;
}

.transactions-table h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.desktop-table {
    width: 100%;
    border-collapse: collapse;
}

.desktop-table th {
    text-align: center;
    padding: 12px;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.desktop-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
    text-align: center;
}

/* Keep Amount right-aligned */
.desktop-table td:nth-child(4) { /* Amount */
    text-align: right;
}

/* Optional: Add some hover effect */
.desktop-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Make sure the container doesn't overflow */
.container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Adjust padding on mobile */
@media (max-width: 768px) {
    .transactions-table {
        padding: 10px;
        margin: 10px 0;
    }
}

/* Desktop Table */
.desktop-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

/* Mobile Transaction Cards */
.mobile-transactions {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.transaction-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #e0e0e0;
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.transaction-date {
    font-size: 14px;
    color: #666;
}

.transaction-amount {
    font-weight: bold;
    font-size: 16px;
}

.transaction-amount.income {
    color: #28a745;
}

.transaction-amount.expense {
    color: #dc3545;
}

.transaction-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-category {
    font-size: 15px;
    color: #333;
}

.transaction-actions {
    display: flex;
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-table {
        display: none;
    }

    .mobile-transactions {
        display: flex;
    }

    .transactions-table {
        padding: 15px;
        margin: 15px;
    }

    .action-btn {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 16px;
    }
}

/* Landing Page */
.hero {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 20px;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* Utility Classes */
.text-center {
    text-align: center;
    margin: 25px 0;
    font-size: 16px;
}

.link {
    color: #007bff;
    text-decoration: none;
    padding: 10px;
    margin: -10px;
    display: inline-block;
}

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

.error {
    width: 100%;
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        padding: 40px;
        margin: 80px auto 0;
    }

    .form-container {
        margin: 40px auto;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        max-width: 800px;
    }

    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
    }

    .form-row .form-group {
        flex: 1;
        margin-bottom: 0;
    }

    .balance-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }

    .button,
    button {
        width: auto;
        padding: 0 30px;
        height: 50px;
        font-size: 16px;
    }

    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    select {
        height: 50px;
        font-size: 16px;
    }

    button,
    .button {
        height: 50px;
        font-size: 16px;
    }

    .nav-container {
        justify-content: space-between;  /* Left-align on desktop */
    }
}

/* Action Buttons in Table */
.actions {
    text-align: center;
    padding: 5px !important;  /* Override default table padding */
}

.action-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;  /* Center the buttons */
    align-items: center;
    margin: 0 auto;  /* Center the container */
}

.action-btn {
    width: 35px;
    height: 35px;
    text-align: center;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    margin: 0 2px;
    text-decoration: none;
    border-radius: 4px;
    line-height: 1;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.delete-btn {
    background: #dc3545;
    color: white;
    font-size: 16px;
}

.edit-btn {
    background: #007bff;
    color: white;
    font-size: 16px;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .action-btn {
        width: 35px;
        height: 35px;
        line-height: 1;
    }
    
    .delete-btn {
        font-size: 18px !important;
    }
    
    .edit-btn {
        font-size: 18px !important;
    }

    .transaction-actions {
        display: flex;
        gap: 8px;
        align-items: center;
    }
}

/* Delete Account Section */
.delete-account-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.delete-account-section h2 {
    color: #dc3545;
    margin-bottom: 15px;
}

.warning-text {
    color: #721c24;
    background-color: #f8d7da;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.delete-button {
    background-color: #dc3545 !important;
    color: white;
}

.delete-button:hover {
    background-color: #c82333 !important;
}

/* Add Transaction Button */
.add-transaction {
    text-align: center;
    margin: 20px 0;
}

.add-transaction .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 12px;
    margin: 30px 0;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .add-transaction .button {
        width: auto;
        min-width: 200px;
        height: 50px;
        font-size: 16px;
        padding: 0 30px;
        margin: 30px auto;
    }
}

/* Add Transaction Page Styles */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.transaction-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
    font-size: 24px;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    padding: 20px;
    transition: transform 0.2s ease;
}

.transaction-button:hover {
    transform: translateY(-2px);
}

.income-button {
    background-color: #28a745;
}

.expense-button {
    background-color: #dc3545;
}

.back-button {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 16px;
    padding: 10px 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .button-container {
        padding: 15px;
    }
    
    .transaction-button {
        min-height: 100px;
        font-size: 20px;
    }
}

/* Category Management */
.category-section {
    margin-top: 20px;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #f8f9fa;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
}

.category-item:hover {
    background: #f0f7ff;
    border-color: #007bff;
}

.category-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    margin: 0;
    width: 100%;
}

.category-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.delete-category {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 18px;
    padding: 0 8px;
    cursor: pointer;
    opacity: 0.7;
    display: block;  /* Always show */
    line-height: 1;
}

.delete-category:hover {
    opacity: 1;
    color: #c82333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-list {
        grid-template-columns: 1fr;
    }
}

/* Form Container Updates */
.form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.form-container h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.form-container h3 {
    margin: 20px 0 10px;
    font-size: 18px;
    color: #444;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    select {
        height: 60px;
        font-size: 18px;
    }
}

textarea#description {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 80px;
}

/* For the dashboard table */
.desktop-table td.description {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Add this to your existing table styles */
.desktop-table td:nth-child(2) { /* Description column */
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;  /* Left align the description text */
}

/* Optional: Add a tooltip on hover to show full description */
.desktop-table td:nth-child(2) {
    position: relative;
}

.desktop-table td:nth-child(2):hover {
    white-space: normal;
    overflow: visible;
    z-index: 1;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

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

.footer p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-logo {
    max-width: 100px;
    height: auto;
    vertical-align: middle;
    margin-left: 5px;
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 15px 0;
    }
    
    .footer-content {
        padding: 0 10px;
    }
    
    .footer p {
        font-size: 12px;
    }
    
    .footer-logo {
        max-width: 80px;
        margin: 5px 0;
    }
}

.negative-balance {
    background-color: #ffd700 !important; /* Yellow background */
    color: #000 !important; /* Black text */
}

.negative-balance h3, .negative-balance p {
    color: #000 !important; /* Ensure both heading and value are black */
}

/* Transaction Tabs */
.transaction-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

.tab-link {
    padding: 10px 20px;
    text-decoration: none;
    color: #6c757d;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tab-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.tab-link.active {
    background-color: #007bff;
    color: white;
}

/* Text colors for amounts */
.text-danger {
    color: #dc3545;
}

.text-success {
    color: #28a745;
}

.nav-left {
    display: flex;
}

.nav-right {
    margin-left: auto;
}

/* Admin Panel Styles */
.admin-panel {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.admin-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.role-select,
.status-select {
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 120px;
}

.save-btn {
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.save-btn:hover {
    background-color: #0056b3;
}

.success {
    width: 100%;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
}

/* Mobile adjustments */
@media (max-width: 95%) {
    .container {
        margin-top: 70px;
        padding: 15px;
    }
    
    .form-container {
        padding: 20px 15px;
        margin-top: 10px;
        border-radius: 8px;
    }
    
    /* Adjust form groups for better mobile spacing */
    .form-group {
        margin-bottom: 15px;
    }
    
    /* Ensure buttons have enough touch area on mobile */
    button, 
    .button {
        min-height: 44px;
        margin-top: 10px;
    }
}

/* Welcome Page Styles */
.welcome-container {
    max-width: 600px;  /* Reduced from 800px since we only have one step */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.welcome-content {
    margin-top: 30px;
}

.welcome-steps {
    margin-top: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.step h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.step p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.benefits-list {
    text-align: left;
    margin: 20px auto;
    max-width: 400px;
    padding-left: 20px;
}

.benefits-list li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.step .button {
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    padding: 12px 20px;
    font-size: 16px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .welcome-container {
        padding: 15px;
    }
    
    .step {
        padding: 20px;
    }
    
    .benefits-list {
        padding-left: 30px;
    }
}

/* Profile Page Sections */
.form-container > form,
.delete-account-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.form-container > form:last-of-type {
    border-bottom: none;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Category Section */
.category-section {
    margin-top: 30px;
}

/* Password Section */
.password-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Delete Account Section */
.delete-account-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row .form-group {
        margin-bottom: 15px;
    }
}

/* Profile form spacing */
.form-container form {
    margin-bottom: 0;  /* Remove bottom margin from forms */
    padding-bottom: 0; /* Remove bottom padding from forms */
}

.form-container button[type="submit"] {
    margin-bottom: 0;
    margin-top: 15px;  /* Add some space above the button */
}

/* Add space at the top of the next section instead */
.form-container + .form-container {
    margin-top: 20px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.add-category {
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-category input {
    width: 200px;
    height: 35px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.small-button {
    padding: 0 15px;
    height: 35px;
    min-width: 60px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.small-button:hover {
    background-color: #0056b3;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .add-category {
        width: 100%;
    }
    
    .add-category input {
        flex: 1;
    }
}

.category-instructions {
    margin-bottom: 25px;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 4px;
    color: #2c3e50;
    font-size: 1.1em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
    }
}

/* Landing Page Styles */
.landing-page {
    background-color: #f8f9fa;
}

.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
}

.landing-nav .logo img {
    height: 45px;
    width: auto;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 10px 5% 10px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 60px auto 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.button-large {
    padding: 15px 40px;
    font-size: 18px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.benefits {
    background-color: white;
    padding: 80px 5%;
    text-align: center;
}

.benefits h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    padding: 30px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

/* Button Styles */
.button-outline {
    border: 2px solid #007bff;
    color: #007bff;
    background: transparent;
}

.button-outline:hover {
    background: #007bff;
    color: white;
}

.button-primary {
    background: #007bff;
    color: white;
}

.button-primary:hover {
    background: #0056b3;
}

.button-secondary {
    background: #6c757d;
    color: white;
}

.button-secondary:hover {
    background: #5a6268;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .button-large {
        width: 100%;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

.free-banner {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.free-text {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.free-subtext {
    font-size: 24px;
    opacity: 0.9;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .free-text {
        font-size: 48px;
    }
    
    .free-subtext {
        font-size: 20px;
    }
}

.landing-nav .logo img {
    height: 45px;
    width: auto;
}

/* Mobile size */
@media (max-width: 768px) {
    .landing-nav {
        height: 70px;
    }
    
    .landing-nav .logo img {
        height: 40px;
    }
} 