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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}
.nav-item {
	margin-bottom: 0 !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem !important;
    color: #2c3e50 !important;
}

h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
}

p {
    margin-bottom: 1.2rem;
    font-size: 17px;
    color: #34495e;
}

strong {
    color: #2c3e50;
    font-weight: 600;
}

em {
    font-style: italic;
    color: #5a6c7d;
}

/* Links */
a {
    color: #ff7f50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6347;
    text-decoration: none;
}

/* Navigation */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0 !important;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
}

.navbar-nav {
    list-style: none !important;
}

.navbar-nav .nav-link {
    color: #2c3e50 !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    list-style: none !important;
}

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
    display: none !important;
    content: none !important;
}

.navbar-nav .nav-item {
    list-style: none !important;
}

.navbar-nav .nav-item::before,
.navbar-nav .nav-item::after {
    display: none !important;
    content: none !important;
}

.navbar-nav .nav-link:hover {
    color: #ff7f50 !important;
}

.navbar-toggler {
    border: none !important;
    padding: 0.5rem !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* CTA Button in Menu */
.btn-cta-menu {
    background-color: #ff7f50 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    display: inline-block !important;
    text-align: center !important;
}

.btn-cta-menu:hover {
    background-color: #ff6347 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 8rem 0 6rem 0 !important;
    margin-bottom: 3rem !important;
    overflow: hidden !important;
}

.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(192,192,192,0.95) 0%, rgba(192,192,192,0.85) 100%) !important;
    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
}

.hero-section h1 {
    color: #ffffff !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2) !important;
}

.hero-section p {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
    max-width: 800px !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2) !important;
}

.btn-hero {
    background-color: #ff7f50 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    white-space: nowrap !important;
    text-align: center !important;
}

.btn-hero:hover {
    background-color: #ff6347 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,127,80,0.4);
}

/* Content Sections */
section {
    padding: 4rem 0;
}

.content-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Lists */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

ul li, ol li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: #ff7f50;
    border-radius: 50%;
    display: block !important;
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: #ff7f50;
    font-weight: 700;
    display: block !important;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

picture {
    display: block;
    margin: 2rem 0;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: #c0c0c0;
}

thead th {
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 1.2rem !important;
    text-align: left;
    font-size: 16px;
    border: none;
}

tbody tr {
    border-bottom: 1px solid #ecf0f1;
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: #f8f9fa;
}

tbody td {
    padding: 1.2rem;
    color: #34495e;
    font-size: 16px;
}

/* Cards */
.card {
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08) !important;
    margin-bottom: 2rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12) !important;
}

.card-body {
    padding: 2rem !important;
}

/* Icons */
.fa, .fas, .far, .fab {
    color: #ff7f50;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

footer h5 {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    margin-bottom: 1.5rem !important;
    font-weight: 600 !important;
}

footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

footer ul li {
    margin-bottom: 0.8rem;
    padding-left: 0 !important;
}

footer ul li::before,
footer ul li::after {
    display: none !important;
    content: none !important;
}

footer a {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff7f50;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.95rem;
}

/* Conversion Buttons */
.btn-conversion {
    background-color: #ff7f50 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    white-space: nowrap !important;
    text-align: center !important;
    margin: 1.5rem 0 !important;
}

.btn-conversion:hover {
    background-color: #ff6347 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,127,80,0.4);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #34495e;
    line-height: 1.8;
}

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

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    .hero-section {
        padding: 5rem 0 4rem 0 !important;
    }

    .hero-section h1 {
        font-size: 2rem !important;
    }

    .hero-section p {
        font-size: 1rem !important;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .navbar-brand {
        font-size: 1.3rem !important;
    }

    .navbar-brand img {
        width: 35px;
        height: 35px;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    .hero-section {
        padding: 4rem 0 3rem 0 !important;
    }

    .hero-section h1 {
        font-size: 1.75rem !important;
    }

    .btn-hero,
    .btn-conversion {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    table {
        font-size: 14px;
    }

    thead th,
    tbody td {
        padding: 0.8rem !important;
    }
}

/* Accessibility */
:focus {
    outline: 2px solid #ff7f50;
    outline-offset: 2px;
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}
