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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
.center-text {
  text-align: center;  /* Aligns the text horizontally */
  margin: 0 auto;      /* Optional: Centers the element itself if it's a block-level element */
}


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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #2c5aa0;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo a {
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links li a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-nav {
    background-color: #1e4d8c !important;
    color: white !important;
    font-weight: 700 !important;
}

.cta-nav:hover {
    background-color: #163a6d !important;
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(44, 90, 160, 0.7), rgba(44, 90, 160, 0.7)), url('https://via.placeholder.com/1920x1080?text=Trading+Background') center/cover;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 120px 0 100px 0;
}

.hero marquee {
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 20px;
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    justify-content: center;
    margin: 1rem 0;
}

.services-cards .card {
    min-height: 120px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 300;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #2c5aa0;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.about-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.portfolio-growth {
    text-align: center;
}

.portfolio-growth h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c5aa0;
}

.growth-bars {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 200px;
    justify-content: flex-end;
}

.bar-fill {
    width: 60px;
    background-color: #2c5aa0;
    border-radius: 5px 5px 0 0;
    transition: height 0.5s ease;
    position: relative;
}

.bar span {
    text-align: center;
    font-weight: 500;
    color: #333;
}

.bar span small {
    font-size: 0.8rem;
    color: #666;
}

/* Process Section */
.process {
    padding: 100px 0;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

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

.card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

/* Solutions Section Specific Styles */
.solutions {
    padding: 100px 0;
    text-align: center;
}

#password-section {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#password-section input {
    width: 100%;
    padding: 0.8rem;
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

#password-section button {
    background-color: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

#password-section button:hover {
    background-color: #0056b3;
}

.planner-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.tab-button {
    background-color: #f8f9fa;
    color: #333;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.tab-button:hover {
    background-color: #e9ecef;
}

.tab-button.active {
    background-color: #2c5aa0;
    color: white;
}

.tab-content {
    display: none;
    background-color: #fff;
    padding: 2rem;
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.tab-content.active {
    display: block;
}

.goal-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.input-section, .projection-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-section label, .projection-section label {
    font-weight: 500;
    color: #333;
    text-align: left;
}

.input-section input, .input-section select, .projection-section input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.projection-section p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
    margin: 0.5rem 0;
}

.tab-icon {
    display: block;
    margin: 0 auto 1rem;
    width: 50px;
    height: 50px;
}

.build-sip-btn {
    background-color: #28a745;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
}

.build-sip-btn:hover {
    background-color: #218838;
}

.goal-inputs button:not(.build-sip-btn) {
    background-color: #2c5aa0;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
    grid-column: 1 / -1;
    justify-self: center;
}

.goal-inputs button:not(.build-sip-btn):hover {
    background-color: #1e4d8c;
}

.calculator p {
    font-weight: bold;
    color: #28a745;
    margin: 0.5rem 0;
}

.sip-table-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sip-table-container h4 {
    margin-bottom: 15px;
    color: #333;
}

.sip-table-container p {
    margin-bottom: 20px;
    color: #666;
}

#sip-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

#sip-table th,
#sip-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

#sip-table th {
    background: #2c5aa0;
    color: white;
    font-weight: bold;
}

#sip-table td {
    background: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-bottom: 20px;
}

.scenarios-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.scenarios-container h4 {
    margin-bottom: 15px;
    color: #333;
}

.scenarios-container p {
    margin-bottom: 20px;
    color: #666;
}

.scenario-columns {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.scenario {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    min-width: 200px;
    margin: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.scenario h5 {
    margin-bottom: 15px;
    color: #333;
}

.scenario p {
    margin-bottom: 10px;
    font-weight: bold;
}

.conservative { border-left: 5px solid #28a745; }
.moderate { border-left: 5px solid #ffc107; }
.aggressive { border-left: 5px solid #dc3545; }

.allocation-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.allocation-container h4 {
    margin-bottom: 15px;
    color: #333;
}

.allocation-container p {
    margin-bottom: 20px;
    color: #666;
}

.allocation-bars {
    margin-bottom: 20px;
}

.allocation-item {
    margin-bottom: 20px;
    text-align: left;
}

.allocation-item label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.bar-container {
    background: #e9ecef;
    height: 20px;
    border-radius: 10px;
    margin-bottom: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.allocation-large { background: #28a745; }
.allocation-debt { background: #007bff; }
.allocation-bonds { background: #6c757d; }

.allocation-item span {
    display: inline-block;
    margin-left: 10px;
    font-weight: bold;
    color: #333;
}

/* Resources, Insurance, Retirement Sections - Unified Styling */
.resources, .insurance, .retirement {
    padding: 100px 0;
    text-align: center;
}

.resources h2, .insurance h2, .retirement h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5aa0;
}

.resources p, .insurance p, .retirement p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Password Section Styling - Same as Solutions */
#resources-password-section, #insurance-password-section, #retirement-password-section {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#resources-password-section input, #insurance-password-section input, #retirement-password-section input {
    width: 100%;
    padding: 0.8rem;
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

#resources-password-section button, #insurance-password-section button, #retirement-password-section button {
    background-color: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

#resources-password-section button:hover, #insurance-password-section button:hover, #retirement-password-section button:hover {
    background-color: #0056b3;
}

/* Tab Styling - Same as Solutions */
.resources-tabs, .insurance-tabs, .retirement-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.resources .tab-button, .insurance .tab-button, .retirement .tab-button {
    background-color: #f8f9fa;
    color: #333;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.resources .tab-button:hover, .insurance .tab-button:hover, .retirement .tab-button:hover {
    background-color: #e9ecef;
}

.resources .tab-button.active, .insurance .tab-button.active, .retirement .tab-button.active {
    background-color: #2c5aa0;
    color: white;
}

.resources .tab-content, .insurance .tab-content, .retirement .tab-content {
    display: none;
    background-color: #fff;
    padding: 2rem;
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.resources .tab-content.active, .insurance .tab-content.active, .retirement .tab-content.active {
    display: block;
}

/* Calculator Styling - Same as Solutions */
.resources .calculator, .insurance .calculator, .retirement .calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.resources .calculator label, .insurance .calculator label, .retirement .calculator label {
    font-weight: 500;
    color: #333;
    text-align: left;
    margin-bottom: 0.5rem;
    display: block;
}

.resources .calculator input, .resources .calculator select,
.insurance .calculator input, .insurance .calculator select,
.retirement .calculator input, .retirement .calculator select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    margin-bottom: 1rem;
}

.resources .calculator button, .insurance .calculator button, .retirement .calculator button {
    background-color: #2c5aa0;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    grid-column: 1 / -1;
    justify-self: center;
}

.resources .calculator button:hover, .insurance .calculator button:hover, .retirement .calculator button:hover {
    background-color: #1e4d8c;
}

/* Retirement specific content styling */
.retirement .tab-content h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.retirement .tab-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-top: 1rem;
}

.retirement .tab-content li {
    margin-bottom: 0.5rem;
}

.result-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-card h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.result-card p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.result-card .disclaimer {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Modal Form Styles */
#appointment-modal .modal-content {
    max-width: 600px;
}

#appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#appointment-form input, #appointment-form select, #appointment-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

#appointment-form textarea {
    resize: vertical;
    min-height: 80px;
}

#appointment-form button {
    background-color: #2c5aa0;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

#appointment-form button:hover {
    background-color: #1e4d8c;
}

/* Other Sections */
.solutions, .blog, .resources, .services, .retirement {
    padding: 100px 0;
    text-align: center;
}

.solutions h2, .blog h2, .resources h2, .services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5aa0;
}

.solutions p, .blog p, .resources p, .services p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.calculator {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.calculator input, .calculator select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.calculator button {
    background-color: #2c5aa0;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calculator button:hover {
    background-color: #1e4d8c;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    margin-bottom: 0.5rem;
}

.resource-card a {
    color: #2c5aa0;
    text-decoration: none;
}

.resource-card a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input, .contact textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact textarea {
    resize: vertical;
    min-height: 120px;
}

.contact button {
    background-color: #2c5aa0;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #1e4d8c;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: none;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Calendar Modal Specific Styles */
#calendar-modal .modal-content {
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
}

#calendar-modal h2 {
    margin: 20px;
    text-align: center;
    color: #333;
}

#calendar-container {
    padding: 20px;
}

#calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#prev-month, #next-month {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

#prev-month:hover, #next-month:hover {
    background: #1e4d8c;
}

#month-year {
    font-size: 1.5rem;
    color: #333;
}

#calendar-days {
    display: flex;
    flex-direction: column;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
    margin-bottom: 1px;
}

.calendar-weekdays div {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #666;
    background: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
}

.calendar-day {
    padding: 15px 5px;
    text-align: center;
    background: white;
    cursor: pointer;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.calendar-day.empty {
    background: #f8f9fa;
    cursor: default;
}

.calendar-day.past {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.today {
    background: #007bff;
    color: white;
    font-weight: bold;
}

.calendar-day.selectable {
    color: #333;
}

.calendar-day.selectable:hover {
    background: #e3f2fd;
}

.calendar-day.selected {
    background: #2c5aa0;
    color: white;
    font-weight: bold;
}

#time-slots {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

#time-slots h4 {
    margin-bottom: 15px;
    color: #333;
}

#available-times {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.time-slot {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot:hover {
    background: #e3f2fd;
    border-color: #007bff;
}

.time-slot.selected {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

#confirm-booking {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

#confirm-booking:hover {
    background: #218838;
}

#booking-message {
    margin-top: 20px;
    padding: 15px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

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

.nav-links {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #2c5aa0;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
}

.nav-links.active {
    left: 0;
}

.nav-links li a {
    color: white;
}

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .growth-bars {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .process-cards {
        grid-template-columns: 1fr;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }
}
