/* Reset and Base Styles */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Poppins', sans-serif;
   line-height: 1.6;
   color: #333;
   overflow-x: hidden;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

/* Buttons */
.btn {
   display: inline-block;
   padding: 15px 30px;
   text-decoration: none;
   border: none;
   cursor: pointer;
   font-weight: 600;
   text-transform: uppercase;
   transition: all 0.3s ease;
   border-radius: 5px;
   font-size: 14px;
   letter-spacing: 1px;
}

.btn-primary {
   background: linear-gradient(45deg, #d3a045, #946547);
   color: white;
}

.btn-primary:hover {
   background: linear-gradient(45deg, #946547, #d3a045);
   transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
   background-color: #233352;
   color: white;
   padding: 10px 0;
   font-size: 13px;
}

.top-bar-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.contact-info span {
   margin-right: 30px;
}

.social-links {
   display: flex;
   align-items: center;
   gap: 15px;
}

.social-links a {
   color: white;
   font-size: 16px;
   transition: color 0.3s ease;
}

.social-links a:hover {
   color: #d3a045;
}

/* Header */
.header {
   background: white;
   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: sticky;
   top: 0;
   z-index: 1000;
}

.header-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 0;
}

.logo img {
   height: 50px;
}

/* Navigation */
.navigation {
   display: flex;
   align-items: center;
}

.nav-menu {
   display: flex;
   list-style: none;
   gap: 30px;
}

.nav-item {
   position: relative;
}

.nav-link {
   text-decoration: none;
   color: #333;
   font-weight: 500;
   padding: 10px 0;
   transition: color 0.3s ease;
   display: flex;
   align-items: center;
   gap: 5px;
}

.nav-link:hover {
   color: #d3a045;
}

.dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   background: white;
   min-width: 200px;
   box-shadow: 0 5px 20px rgba(0,0,0,0.1);
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: all 0.3s ease;
   list-style: none;
   padding: 10px 0;
   border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.dropdown-menu li {
   padding: 0;
}

.dropdown-menu a {
   display: block;
   padding: 10px 20px;
   color: #333;
   text-decoration: none;
   transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
   background-color: #f8f9fa;
   color: #d3a045;
}

/* Header Actions */
.header-actions {
   display: flex;
   align-items: center;
   gap: 20px;
}

.cart {
   position: relative;
   color: #333;
   font-size: 18px;
   cursor: pointer;
}

.cart-count {
   position: absolute;
   top: -8px;
   right: -8px;
   background: #d3a045;
   color: white;
   border-radius: 50%;
   width: 20px;
   height: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
}

.mobile-menu-toggle {
   display: none;
   flex-direction: column;
   cursor: pointer;
   gap: 4px;
}

.mobile-menu-toggle span {
   width: 25px;
   height: 3px;
   background: #333;
   transition: all 0.3s ease;
}

/* Hero Section */
.hero {
 display: flex;
 align-items: center;
 justify-content: center;
 background-size: cover;
 background-position: center;
 height: 400px;
 position: relative;
}

.hero .container {
 width: 100%;
 max-width: 1200px;
}

.hero-content {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
}

.hero-text {
 text-align: center;
 max-width: 800px;
}

.main-center-text {
 font-size: 32px;
 font-weight: bold;
 color: white;
 text-shadow: 0 2px 4px rgba(0,0,0,0.5);
 text-align: center;
}

.hero-subtitle {
 font-size: 16px;
 margin-bottom: 10px;
 color: #fff;
}

.hero-title {
 font-size: 36px;
 font-weight: bold;
 margin-bottom: 10px;
}

.hero-heading {
 font-size: 22px;
 margin-bottom: 15px;
}

.hero-description {
 font-size: 16px;
 margin-bottom: 25px;
}

.btn-primary {
 background-color: #1e3e84;
 color: white;
 padding: 10px 20px;
 text-decoration: none;
 border-radius: 6px;
 font-weight: bold;
}

.hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(255, 255, 255, 0.1);
   z-index: 1;
}

.hero-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
   align-items: center;
   position: relative;
   z-index: 2;
}

.hero-subtitle {
   color: #2c5282;
   font-size: 14px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 10px;
}

.hero-title {
   font-size: 48px;
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: 20px;
   font-family: 'Rubik', sans-serif;
   color: #2c5282;
}

.hero-heading {
   font-size: 32px;
   font-weight: 600;
   margin-bottom: 15px;
   color: #f6ad55;
}

.hero-description {
   font-size: 16px;
   margin-bottom: 30px;
   opacity: 0.9;
   color: #4a5568;
}

.hero-image img {
   width: 100%;
   height: auto;
}

/* Insurance Section */
.insurance-section {
   max-width: 1200px;
   margin: 0 auto;
   padding: 60px 20px;
   text-align: center;
   font-family: 'Arial', sans-serif;
}

.section-title {
   font-size: 2.2rem;
   color: #2c5282;
   margin-bottom: 50px;
   line-height: 1.4;
   font-weight: 300;
}

.insurance-cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 30px;
   margin-bottom: 80px;
}

.insurance-card {
   background: white;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insurance-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-image {
   width: 100%;
   height: 200px;
   object-fit: cover;
}

.card-footer {
   background: linear-gradient(135deg, #2c5282, #3182ce);
   color: white;
   padding: 15px 20px;
   font-size: 1.1rem;
   font-weight: 500;
   position: relative;
}

.card-footer::after {
   content: '🔥';
   position: absolute;
   right: 20px;
   top: 50%;
   transform: translateY(-50%);
   font-size: 1.2rem;
}

.broker-section-title {
   font-size: 2rem;
   color: #2c5282;
   margin-bottom: 60px;
   font-weight: 500;
}

.steps-container {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 30px;
   position: relative;
}

.step {
   text-align: center;
   padding: 20px;
   flex: 1;
   min-width: 200px;
   max-width: 250px;
}

.step-divider {
   font-size: 3rem;
   color: #f6ad55;
   font-weight: 300;
   opacity: 0.6;
   margin: 0 10px;
   align-self: flex-start;
   margin-top: 40px;
}

.step-number {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, #f6ad55, #ed8936);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   font-weight: 700;
   margin: 0 auto 25px;
   box-shadow: 0 8px 20px rgba(246, 173, 85, 0.3);
   position: relative;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number::before {
   content: '';
   position: absolute;
   top: -3px;
   left: -3px;
   right: -3px;
   bottom: -3px;
   background: linear-gradient(135deg, #f6ad55, #ed8936, #f6ad55);
   border-radius: 50%;
   z-index: -1;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.step:hover .step-number {
   transform: scale(1.1);
   box-shadow: 0 12px 30px rgba(246, 173, 85, 0.4);
}

.step:hover .step-number::before {
   opacity: 1;
}

.step-title {
   font-size: 1.3rem;
   color: #2c5282;
   margin-bottom: 15px;
   font-weight: 600;
}

.step-description {
   color: #4a5568;
   line-height: 1.6;
   font-size: 0.95rem;
}

/* About Section */
.about-section {
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 80px 0;
   position: relative;
   overflow: hidden;
}

.about-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,0 1000,0 1000,60 0,100"/></svg>') no-repeat bottom center;
   background-size: cover;
}

.about-section .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   position: relative;
   z-index: 2;
}

.content-wrapper {
   display: grid;
   grid-template-columns: 1fr 400px;
   gap: 60px;
   align-items: center;
}

.text-content {
   max-width: 600px;
}

.about-section .section-title {
   font-size: 2.5rem;
   color: #2c5282;
   margin-bottom: 30px;
   font-weight: 600;
   line-height: 1.2;
   position: relative;
}

.about-section .section-title::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 60px;
   height: 4px;
   background: linear-gradient(135deg, #f6ad55, #ed8936);
   border-radius: 2px;
}

.intro-text {
   font-size: 1.2rem;
   color: #2c5282;
   font-weight: 500;
   margin-bottom: 25px;
   line-height: 1.6;
}

.description-text {
   font-size: 1rem;
   color: #4a5568;
   line-height: 1.7;
   margin-bottom: 20px;
   text-align: justify;
}

.highlight-text {
   font-size: 1.1rem;
   color: #2c5282;
   font-weight: 600;
   margin-top: 30px;
   padding: 20px;
   background: rgba(44, 82, 130, 0.1);
   border-left: 4px solid #f6ad55;
   border-radius: 0 8px 8px 0;
}

.image-content {
   position: relative;
}

.image-wrapper {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
   transform: rotate(-2deg);
   transition: transform 0.3s ease;
}

.image-wrapper:hover {
   transform: rotate(0deg) scale(1.02);
}

.image-wrapper::before {
   content: '';
   position: absolute;
   top: -10px;
   left: -10px;
   right: -10px;
   bottom: -10px;
   background: linear-gradient(135deg, #f6ad55, #ed8936);
   border-radius: 25px;
   z-index: -1;
   opacity: 0.3;
}

.profile-image {
   width: 100%;
   height: auto;
   display: block;
   border-radius: 20px;
}

.about-section::after {
   content: '';
   position: absolute;
   top: 20%;
   right: -50px;
   width: 200px;
   height: 200px;
   background: linear-gradient(135deg, rgba(246, 173, 85, 0.1), rgba(237, 137, 54, 0.1));
   border-radius: 50%;
   z-index: 1;
}

/* Partners Contact Section */
.partners-contact-section {
   background: #ffffff;
   padding: 80px 0;
}

.partners-section {
   margin-bottom: 60px;
}

.partners-title {
   font-size: 2.5rem;
   color: #2c5282;
   margin-bottom: 40px;
   font-weight: 400;
}

.partners-content {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 60px;
   align-items: center;
}

.partners-text p {
   color: #4a5568;
   line-height: 1.7;
   margin-bottom: 20px;
   font-size: 1rem;
   text-align: justify;
}

.partners-logos {
   display: flex;
   flex-direction: column;
   gap: 30px;
   align-items: center;
}

.logo-item {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 15px;
   background: #f8f9fa;
   border-radius: 10px;
   width: 100%;
   max-width: 150px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-logo {
   max-width: 100%;
   height: auto;
   max-height: 50px;
}

.section-divider {
   width: 100%;
   height: 2px;
   background: linear-gradient(135deg, #f6ad55, #ed8936);
   margin: 60px 0;
   border-radius: 1px;
}

.contact-content {
   display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 80px;
   align-items: flex-start;
}

.contact-title {
   font-size: 2.2rem;
   color: #2c5282;
   line-height: 1.3;
   font-weight: 400;
   margin-bottom: 0;
}

.contact-form {
   background: #f8f9fa;
   padding: 40px;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
   margin-bottom: 20px;
}

.form-group {
   display: flex;
   flex-direction: column;
}

.form-group.full-width {
   grid-column: 1 / -1;
}

.form-group label {
   color: #4a5568;
   font-size: 0.9rem;
   margin-bottom: 8px;
   font-weight: 500;
}

.form-group input,
.form-group textarea {
   padding: 12px 15px;
   border: 2px solid #e2e8f0;
   border-radius: 8px;
   font-size: 1rem;
   transition: border-color 0.3s ease, box-shadow 0.3s ease;
   background: white;
}

.form-group input:focus,
.form-group textarea:focus {
   outline: none;
   border-color: #f6ad55;
   box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.1);
}

.form-group textarea {
   resize: vertical;
   min-height: 120px;
}

.submit-btn {
   background: linear-gradient(135deg, #48bb78, #38a169);
   color: white;
   border: none;
   padding: 15px 30px;
   border-radius: 8px;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: flex;
   align-items: center;
   gap: 10px;
   margin-top: 20px;
}

.submit-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

.btn-icon {
   font-size: 1.2rem;
}

/* Footer */
.footer {
   background: linear-gradient(135deg, #1a1f36 0%, #2c3e50 100%);
   color: white;
   padding: 60px 0 40px;
   position: relative;
   overflow: hidden;
}

.footer::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
   opacity: 0.3;
}

.footer .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   position: relative;
   z-index: 2;
}

.footer-top {
   text-align: center;
   margin-bottom: 50px;
}

.location-text {
   font-size: 1.2rem;
   color: rgba(255, 255, 255, 0.8);
   margin: 0;
   font-weight: 300;
}

.footer-content {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 40px;
   align-items: flex-start;
}

.footer-section {
   display: flex;
   flex-direction: column;
}

.footer-title {
   color: white;
   font-size: 1rem;
   font-weight: 600;
   margin-bottom: 25px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   position: relative;
}

.footer-title::after {
   content: '';
   position: absolute;
   bottom: -8px;
   left: 0;
   width: 30px;
   height: 2px;
   background: linear-gradient(135deg, #f6ad55, #ed8936);
   border-radius: 1px;
}

.footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
}

.footer-links li {
   margin-bottom: 12px;
}

.footer-links a {
   color: rgba(255, 255, 255, 0.7);
   text-decoration: none;
   font-size: 0.95rem;
   transition: color 0.3s ease, padding-left 0.3s ease;
   display: block;
   line-height: 1.5;
}

.footer-links a:hover {
   color: #f6ad55;
   padding-left: 5px;
}

.right-links {
   text-align: right;
}

.right-links a {
   text-align: right;
}

.right-links a:hover {
   padding-left: 0;
   padding-right: 5px;
}

.footer-section:first-child .footer-title {
   color: #f6ad55;
}

.footer-section:nth-child(6) .footer-title {
   display: none;
}

/* Services Section */
.services {
   padding: 80px 0;
   background: #f9f8f5;
}

.section-header {
   text-align: center;
   margin-bottom: 60px;
}

.section-header h3 {
   font-size: 32px;
   font-weight: 700;
   color: #233352;
   margin-bottom: 15px;
   font-family: 'Rubik', sans-serif;
}

.section-header h2 {
   font-size: 42px;
   font-weight: 700;
   color: #233352;
   margin-bottom: 15px;
   font-family: 'Rubik', sans-serif;
}

.section-header p {
   color: #969fae;
   font-size: 16px;
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.service-item {
   text-align: center;
   padding: 40px 20px;
   background: white;
   border-radius: 10px;
   box-shadow: 0 5px 20px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.service-item:hover {
   transform: translateY(-10px);
}

.service-icon {
   margin-bottom: 30px;
}

.service-icon img {
   width: 80px;
   height: 80px;
}

.service-item h4 {
   font-size: 22px;
   font-weight: 600;
   color: #233352;
   margin-bottom: 15px;
}

.service-item p {
   color: #969fae;
   line-height: 1.6;
}

/* Video Section */
.video-section {
   padding: 80px 0;
   background: white;
}

.video-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.video-item {
   margin-bottom: 40px;
}

.video-item h4 {
   font-size: 22px;
   font-weight: 600;
   color: #233352;
   margin-bottom: 15px;
}

.video-item p {
   color: #969fae;
   line-height: 1.6;
}

.video-player {
   position: relative;
}

.video-thumbnail {
   position: relative;
   cursor: pointer;
}

.video-thumbnail img {
   width: 100%;
   border-radius: 10px;
}

.play-button {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 80px;
   height: 80px;
   background: rgba(211, 160, 69, 0.9);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 24px;
   transition: all 0.3s ease;
}

.play-button:hover {
   background: rgba(211, 160, 69, 1);
   transform: translate(-50%, -50%) scale(1.1);
}

/* Stats Section */
.stats-section {
   padding: 80px 0;
   background: #f9f8f5;
}

.stats-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.stats-image img {
   width: 100%;
   border-radius: 10px;
}

.stats-text h4 {
   font-size: 22px;
   font-weight: 600;
   color: #233352;
   margin-bottom: 15px;
}

.stats-text p {
   color: #969fae;
   margin-bottom: 30px;
}

.stats-data h3 {
   font-size: 32px;
   font-weight: 700;
   color: #233352;
   margin-bottom: 20px;
   font-family: 'Rubik', sans-serif;
}

.stats-data > p {
   color: #969fae;
   margin-bottom: 40px;
}

.progress-bars {
   space-y: 25px;
}

.progress-item {
   margin-bottom: 25px;
}

.progress-header {
   display: flex;
   justify-content: space-between;
   margin-bottom: 10px;
}

.progress-header span {
   font-weight: 600;
   color: #233352;
}

.progress-bar {
   height: 8px;
   background: #e0e0e0;
   border-radius: 4px;
   overflow: hidden;
}

.progress-fill {
   height: 100%;
   background: linear-gradient(45deg, #d3a045, #946547);
   border-radius: 4px;
   transition: width 2s ease;
   width: 0;
}

.progress-fill.animated {
   animation: progressAnimation 2s ease forwards;
}

/* FAQ Section */
.faq-section {
   padding: 80px 0;
   background: white;
}

.faq-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.faq-item {
   border-bottom: 1px solid #e0e0e0;
   margin-bottom: 20px;
}

.faq-question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 0;
   cursor: pointer;
   transition: color 0.3s ease;
}

.faq-question:hover {
   color: #d3a045;
}

.faq-question h4 {
   font-size: 18px;
   font-weight: 600;
   color: #233352;
}

.faq-question i {
   transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
   transform: rotate(180deg);
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: all 0.3s ease;
   padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
   max-height: 200px;
   padding: 0 0 20px 0;
}
.faq-answer p {
color: #969fae;
line-height: 1.6;
}
.faq-image img {
width: 100%;
border-radius: 10px;
}
/* Features Section */
.features-section {
padding: 80px 0;
background: #233352;
color: white;
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 40px;
align-items: center;
}
.feature-item {
text-align: center;
padding: 30px 20px;
}
.feature-item.central-image {
grid-column: 2;
grid-row: 1 / 3;
display: flex;
align-items: center;
justify-content: center;
}
.feature-item.central-image img {
width: 200px;
height: auto;
}
.feature-item h4 {
font-size: 20px;
font-weight: 600;
margin-bottom: 15px;
color: white;
}
.feature-item p {
color: #cccdcf;
line-height: 1.6;
}
/* Blog Section */
.blog-section {
padding: 80px 0;
background: #f9f8f5;
}
.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
}
.blog-post {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.blog-post:hover {
transform: translateY(-5px);
}
.post-image {
position: relative;
overflow: hidden;
}
.post-image img {
width: 100%;
height: 200px;
object-fit: cover;
transition: transform 0.3s ease;
}
.blog-post:hover .post-image img {
transform: scale(1.05);
}
.post-date {
position: absolute;
top: 20px;
left: 20px;
background: #d3a045;
color: white;
text-align: center;
padding: 10px;
border-radius: 5px;
min-width: 50px;
}
.post-date .month {
display: block;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
}
.post-date .day {
display: block;
font-size: 18px;
font-weight: 700;
}
.post-content {
padding: 30px;
}
.post-meta {
margin-bottom: 15px;
font-size: 14px;
}
.post-meta .category {
color: #d3a045;
font-weight: 600;
}
.post-meta .author {
color: #969fae;
}
.post-title {
font-size: 18px;
font-weight: 600;
color: #233352;
margin-bottom: 20px;
line-height: 1.4;
}
.read-more {
color: #d3a045;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.read-more:hover {
color: #946547;
}
/* Newsletter Section */
.newsletter-section {
padding: 80px 0;
background-size: cover;
background-position: center;
position: relative;
color: white;
}
.newsletter-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(35, 51, 82, 0.8);
z-index: 1;
}
.newsletter-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 2;
}
.newsletter-text h3 {
font-size: 32px;
font-weight: 700;
margin-bottom: 10px;
font-family: 'Rubik', sans-serif;
}
.newsletter-text h2 {
font-size: 42px;
font-weight: 700;
color: #d3a045;
font-family: 'Rubik', sans-serif;
}
.newsletter-section .form-group {
display: flex;
gap: 15px;
margin-bottom: 20px;
}
.newsletter-section .form-group input {
flex: 1;
padding: 15px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
outline: none;
}
.success-message, .error-message {
padding: 15px;
border-radius: 5px;
margin-bottom: 20px;
font-weight: 600;
}
.success-message {
background: rgba(76, 175, 80, 0.1);
border: 1px solid #4CAF50;
color: #4CAF50;
}
.error-message {
background: rgba(244, 67, 54, 0.1);
border: 1px solid #f44336;
color: #f44336;
}
/* Testimonials Section */
.testimonials-section {
padding: 80px 0;
background: white;
}
.testimonials-slider {
position: relative;
max-width: 800px;
margin: 0 auto;
}
.testimonials-container {
position: relative;
overflow: hidden;
}
.testimonial-item {
display: none;
text-align: center;
padding: 40px;
}
.testimonial-item.active {
display: block;
}
.testimonial-image {
margin-bottom: 30px;
}
.testimonial-image img {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
}
.testimonial-item blockquote {
font-size: 18px;
font-style: italic;
color: #969fae;
margin-bottom: 30px;
line-height: 1.6;
}
.testimonial-author h5 {
font-size: 18px;
font-weight: 600;
color: #233352;
margin-bottom: 5px;
}
.testimonial-author span {
color: #969fae;
font-size: 14px;
}
.testimonials-nav {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 40px;
}
.testimonials-nav button {
background: #e0e0e0;
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
font-size: 16px;
transition: all 0.3s ease;
}
.testimonials-nav button:hover {
background: #d3a045;
color: white;
}
/* Responsive Design */
@media (max-width: 1024px) {
.hero-content,
.video-content,
.stats-content,
.faq-content,
.newsletter-content {
grid-template-columns: 1fr;
gap: 40px;
}
.top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.contact-info span {
    margin-right: 15px;
    display: block;
    margin-bottom: 5px;
}

.header-content {
    flex-wrap: wrap;
}

.navigation {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
}

.hero-title {
    font-size: 32px;
}

.hero-heading {
    font-size: 24px;
}

.section-header h3 {
    font-size: 24px;
}

.section-header h2 {
    font-size: 32px;
}

.services-grid {
    grid-template-columns: 1fr;
}

.blog-grid {
    grid-template-columns: 1fr;
}

.features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

.feature-item.central-image {
    grid-column: 1;
    grid-row: auto;
    order: 3;
}

.newsletter-section .form-group {
    flex-direction: column;
}

.footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.insurance-section {
    padding: 40px 15px;
}

.section-title {
    font-size: 1.8rem;
}

.insurance-cards {
    grid-template-columns: 1fr;
    gap: 20px;
}

.broker-section-title {
    font-size: 1.6rem;
}

.steps-container {
    flex-direction: column;
    gap: 30px;
}

.step-divider {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
}

.about-section {
    padding: 60px 0;
}

.about-section .section-title {
    font-size: 2rem;
}

.about-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.image-wrapper {
    max-width: 300px;
    margin: 0 auto;
    transform: rotate(0deg);
}

.description-text {
    text-align: left;
}

.partners-contact-section {
    padding: 60px 0;
}

.partners-title,
.contact-title {
    font-size: 2rem;
}

.form-row {
    grid-template-columns: 1fr;
    gap: 15px;
}

.contact-form {
    padding: 30px 20px;
}

.partners-logos {
    gap: 20px;
}

.logo-item {
    max-width: 120px;
}

.footer {
    padding: 40px 0 30px;
}

.footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.footer-top {
    margin-bottom: 30px;
}

.location-text {
    font-size: 1.1rem;
}
}
@media (max-width: 480px) {
.hero {
padding: 60px 0;
}
.hero-title {
    font-size: 24px;
}

.hero-heading {
    font-size: 20px;
}

.services,
.video-section,
.stats-section,
.faq-section,
.features-section,
.blog-section,
.newsletter-section,
.testimonials-section {
    padding: 60px 0;
}

.service-item,
.blog-post {
    margin-bottom: 30px;
}

.insurance-section {
    padding: 40px 15px;
}

.section-title {
    font-size: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.about-section {
    padding: 40px 0;
}

.about-section .section-title {
    font-size: 1.8rem;
}

.intro-text {
    font-size: 1.1rem;
}

.highlight-text {
    padding: 15px;
    font-size: 1rem;
}

.partners-contact-section {
    padding: 40px 0;
}

.partners-title,
.contact-title {
    font-size: 1.8rem;
}

.contact-form {
    padding: 25px 15px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
}

.footer {
    padding: 30px 0 20px;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
}

.footer .container {
    padding: 0 15px;
}

.footer-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-links a {
    text-align: center;
}

.right-links,
.right-links a {
    text-align: center;
}
}
/* Animations */
@keyframes progressAnimation {
from { width: 0; }
to { width: var(--target-width); }
}
.fade-in {
opacity: 0;
animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn {
to { opacity: 1; }
}
.slide-up {
transform: translateY(30px);
opacity: 0;
animation: slideUp 0.6s ease forwards;
}
@keyframes slideUp {
to {
transform: translateY(0);
opacity: 1;
}
}
/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.pt-60 { padding-top: 60px; }
.pb-60 { padding-bottom: 60px; }
.hidden { display: none; }
.visible { display: block; }
