 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-gold: #f6a12e;
     --secondary-gold: #fcbf12;
     --teal: #7bd0c8;
     --lime: #92e900;
     --dark-text: #1a2332;
     --light-text: #555;
     --bg-light: #f9fafb;
     --border-light: #e5e7eb;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: "Poppins", "Nunito", Sans-serif;
     margin: 0;
     background: var(--bg-light);
     color: var(--dark-text);
     line-height: 1.6;
 }

 /* Navigation */
 nav {
     background: #fff;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     padding: 15px 20px;
     position: sticky;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .nav-container {
     /* max-width: 1200px; */
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .logo {
     display: flex;
     align-items: center;
     text-decoration: none;
     gap: 10px;
 }

 .logo img {
     height: 45px;
     transition: transform 0.3s ease;
 }

 .logo:hover img {
     transform: scale(1.05);
 }

 .menu {
     display: flex;
     align-items: center;
     gap: 30px;
     margin-left: auto;
 }

 .menu a {
     color: var(--dark-text);
     text-decoration: none;
     font-weight: 500;
     font-size: 0.95rem;
     transition: all 0.3s ease;
     position: relative;
 }

 .menu a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
     transition: width 0.3s ease;
 }

 .menu a:hover::after {
     width: 100%;
 }

 .menu a:hover {
     color: var(--primary-gold);
 }

 .cta-btn {
     display: inline-block;
     padding: 15px 30px;
     border-radius: 50px;
     background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
     color: #fff;
     text-decoration: none;
     font-weight: 700;
     font-size: 0.95rem;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(246, 161, 46, 0.3);
     border: none;
     cursor: pointer;
     white-space: nowrap;
 }

 .cta-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(246, 161, 46, 0.4);
 }

 /* Mobile Menu Button */
 .menu-toggle {
     display: none;
     flex-direction: column;
     justify-content: center;
     cursor: pointer;
     width: 30px;
     height: 24px;
     gap: 5px;
 }

 .menu-toggle span {
     height: 3px;
     width: 100%;
     background: var(--dark-text);
     border-radius: 2px;
     transition: all 0.3s ease;
 }

 .menu-toggle.open span:nth-child(1) {
     transform: rotate(45deg) translate(8px, 8px);
 }

 .menu-toggle.open span:nth-child(2) {
     opacity: 0;
 }

 .menu-toggle.open span:nth-child(3) {
     transform: rotate(-45deg) translate(8px, -8px);
 }

 /* Mobile Styles */
 @media (max-width: 768px) {
     .menu {
         position: fixed;
         top: 70px;
         right: -100%;
         background: #fff;
         width: 100%;
         flex-direction: column;
         align-items: center;
         gap: 15px;
         padding: 30px 20px;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
         transition: right 0.3s ease;
     }

     .menu.active {
         right: 0;
     }

     .menu a {
         margin: 10px 0;
         font-size: 1rem;
     }

     .menu-toggle {
         display: flex;
         margin-right: 20px;
     }
 }

 /* Hero Header */
 .main-header {
     background: linear-gradient(180deg, rgba(246, 161, 46, 0.95) 0%, rgb(218 212 199 / 95%) 100%);
     padding: 56px 0 120px;
     border-radius: 28px;
     position: relative;
     overflow: visible;
     color: #fff;
 }

 .main-header::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     border-radius: 28px;
     background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03), transparent 20%),
         radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.06), transparent 25%);
     pointer-events: none;
 }

 .banner-inner {
     display: flex;
     align-items: center;
     gap: 24px;
     position: relative;
     padding: 10px 20px;
 }

 .banner-content {
     flex: 1 1 60%;
     max-width: 720px;
 }

 .banner-content h1 {
     font-size: 2.6rem;
     line-height: 1.05;
     margin-bottom: 12px;
     color: #fff;
     text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
 }

 .banner-content .lead {
     color: rgba(255, 255, 255, 0.95);
     font-size: 1.05rem;
     margin-bottom: 18px;
 }

 .banner-visual {
     flex: 0 0 360px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 18px;
 }

 .memorial-card {
     width: 240px;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(20, 20, 20, 0.25);
     transform: rotate(-12deg);
     background: #000;
 }

 .memorial-card.secondary {
     width: 200px;
     transform: rotate(8deg) translateY(-28px);
     opacity: 0.95;
     box-shadow: 0 12px 30px rgba(20, 20, 20, 0.2);
 }

 .memorial-card img {
     display: block;
     width: 100%;
     height: auto;
 }

 .banner-features {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     top: 95%;
     background: #fff;
     color: var(--dark-text);
     width: calc(100% - 120px);
     max-width: 1100px;
     border-radius: 42px;
     padding: 18px 28px;
     display: flex;
     gap: 24px;
     justify-content: space-around;
     align-items: center;
     box-shadow: 0 20px 30px rgba(18, 24, 32, 0.08);
 }

 .banner-features .feature {
     text-align: center;
     flex: 1 1 33%;
 }

 .banner-features .feature i {
     font-size: 1.7rem;
     color: #ff6b4d;
     display: block;
     margin-bottom: 8px;
 }

 .banner-features .feature .feature-title {
     font-weight: 700;
     color: var(--primary-gold);
     margin-bottom: 6px;
 }

 .banner-features .feature small {
     display: block;
     color: var(--light-text);
     font-size: 0.85rem;
 }

 @media (max-width: 992px) {
     .banner-content h1 {
         font-size: 2.2rem;
     }

     .banner-visual {
         flex: 0 0 300px;
     }
 }

 @media (max-width: 768px) {
     .main-header {
         padding-bottom: 34px;
         border-radius: 18px;
     }

     .banner-inner {
         flex-direction: column;
         text-align: center;
         padding: 24px 20px;
     }

     .banner-visual {
         order: 2;
         display: flex;
         justify-content: center;
     }

     .memorial-card,
     .memorial-card.secondary {
         transform: none;
         width: 220px;
     }

     .memorial-card.secondary {
         margin-top: -12px;
     }

     .banner-features {
         position: static;
         transform: none;
         width: 100%;
         margin-top: 20px;
         border-radius: 14px;
         padding: 14px;
     }

     .banner-features .feature {
         padding: 6px 4px;
     }
 }

 @media (max-width: 480px) {
     .banner-content h1 {
         font-size: 1.6rem;
     }

     .memorial-card,
     .memorial-card.secondary {
         width: 140px;
     }

     .banner-features {
         flex-direction: column;
         gap: 12px;
     }

     .banner-features .feature small {
         font-size: 0.8rem;
     }
 }

 /* color: #fff;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
} */

 .main-header::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 1200 600"><defs><pattern id="pattern" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
     opacity: 0.5;
 }

 .main-header>div {
     position: relative;
     z-index: 1;
 }

 .main-header h1 {
     font-size: 3.5rem;
     margin-bottom: 15px;
     font-weight: 800;
     letter-spacing: -1px;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .main-header .lead {
     font-size: 1.2rem;
     margin-bottom: 30px;
     font-weight: 300;
     opacity: 0.95;
 }

 .header-btns {
     display: flex;
     gap: 15px;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 20px;
 }

 .cta-btn-primary {
     display: inline-block;
     padding: 14px 32px;
     border-radius: 50px;
     background: #fff;
     color: var(--primary-gold);
     text-decoration: none;
     font-weight: 700;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     border: none;
     cursor: pointer;
 }

 .cta-btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
 }

 /* Icon Button Styles */
 .icon-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.95);
     color: var(--primary-gold);
     text-decoration: none;
     font-size: 1.8rem;
     transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
     border: 2px solid transparent;
     cursor: pointer;
     position: relative;
     overflow: hidden;
 }

 .icon-btn::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 0;
     height: 0;
     border-radius: 50%;
     background: var(--primary-gold);
     transform: translate(-50%, -50%);
     transition: width 0.6s, height 0.6s;
     z-index: -1;
 }

 .icon-btn:hover::before {
     width: 100%;
     height: 100%;
 }

 .icon-btn:hover {
     color: #fff;
     transform: scale(1.15) translateY(-4px);
     box-shadow: 0 8px 25px rgba(246, 161, 46, 0.35);
     border-color: var(--primary-gold);
 }

 .icon-btn:active {
     transform: scale(0.95);
 }

 /* Template Gallery Section */
 .template-gallery-section {
     padding: 80px 20px;
     background: linear-gradient(135deg, rgba(123, 208, 200, 0.08), rgba(146, 233, 0, 0.04));
     border-radius: 20px;
     margin: 40px 20px;
 }

 .template-gallery-section h2 {
     font-size: 2.5rem;
     text-align: center;
     color: var(--dark-text);
     margin-bottom: 15px;
     font-weight: 700;
 }

 .template-gallery-section>.container>p {
     text-align: center;
     color: var(--light-text);
     font-size: 1.1rem;
     margin-bottom: 50px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 /* Accordion Container Styles */
 .templates-accordion-container {
     display: flex;
     flex-direction: column;
     gap: 20px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .template-accordion-card {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .template-accordion-card:hover {
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 .accordion-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 25px;
     cursor: pointer;
     background: linear-gradient(135deg, rgba(246, 161, 46, 0.05), rgba(123, 208, 200, 0.05));
     transition: all 0.3s ease;
 }

 .accordion-header:hover {
     background: linear-gradient(135deg, rgba(246, 161, 46, 0.1), rgba(123, 208, 200, 0.1));
 }

 .accordion-title-section {
     display: flex;
     flex-direction: column;
     gap: 10px;
     flex: 1;
     align-items: center;
 }

 .accordion-header h3 {
     font-size: 1.5rem;
     color: var(--primary-gold);
     font-weight: 700;
     margin: 0;
     text-align: left;
 }

 .accordion-description {
     font-size: 0.95rem;
     color: var(--light-text);
     margin: 0;
     text-align: left;
     line-height: 1.5;
 }

 .accordion-toggle {
     background: var(--primary-gold);
     border: none;
     color: white;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     transition: all 0.3s ease;
     margin-left: 20px;
     flex-shrink: 0;
 }

 .accordion-toggle:hover {
     background: var(--secondary-gold);
     transform: scale(1.1);
 }

 .accordion-toggle i {
     transition: transform 0.3s ease;
 }

 .accordion-content {
    /* Accordion removed: content visible by default */
    max-height: none;
    overflow: visible;
    transition: none;
 }

/* hide toggle buttons if any remain in markup */
.accordion-toggle { display: none; }

 .accordion-carousel {
     padding: 30px 25px;
 }

 .templates-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
     max-width: 1300px;
     margin: 0 auto;
 }

 .template-column {
     display: flex;
     flex-direction: column;
     gap: 25px;
 }

 .template-column h3 {
     font-size: 1.5rem;
     color: var(--primary-gold);
     text-align: center;
     font-weight: 700;
     padding-bottom: 15px;
     border-bottom: 3px solid var(--primary-gold);
 }

 .template-wrapper {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .template-row-top {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .template-row-bottom {
     display: flex;
     justify-content: center;
 }

 /* Carousel Container Styles */
 .carousel-container {
     display: flex;
     align-items: center;
     gap: 15px;
     position: relative;
     justify-content: center;
 }

 .template-carousel {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     scroll-behavior: smooth;
     padding: 10px 0;
     flex: 1;
     /* Hide scrollbar */
     -ms-overflow-style: none;
     scrollbar-width: none;
     scroll-snap-type: x mandatory;
 }

 .template-carousel::-webkit-scrollbar {
     display: none;
 }

 .carousel-item {
     flex: 0 0 calc(25% - 15px);
     min-width: 200px;
     scroll-snap-align: start;
 }

 .carousel-arrow {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 45px;
     height: 45px;
     border-radius: 50%;
     background: var(--primary-gold);
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     color: white;
     font-size: 1.5rem;
     flex-shrink: 0;
     box-shadow: 0 4px 12px rgba(246, 161, 46, 0.3);
 }

 .carousel-arrow:hover {
     background: var(--secondary-gold);
     transform: scale(1.1);
     box-shadow: 0 6px 16px rgba(246, 161, 46, 0.5);
 }

 .carousel-arrow:active {
     transform: scale(0.95);
 }

 .carousel-arrow-left {
     order: -1;
 }

 .template-card {
     position: relative;
     overflow: hidden;
     border-radius: 16px;
     display: block;
     text-decoration: none;
     cursor: pointer;
     transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
     height: 310px;
     width: 100%;
     aspect-ratio: 4/3;
 }

 .template-item-1,
 .template-item-2 {
     min-height: 240px;
 }

 .template-item-3 {
     min-height: 240px;
     width: 70%;
     max-width: 280px;
 }

 .template-image {
     width: 100%;
     height: 100%;
     position: relative;
     overflow: hidden;
 }

 .template-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
 }

 .template-card:hover .template-image img {
     transform: scale(1.12) rotate(1deg);
 }

 .template-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg,
    rgba(131, 131, 131, 0.1),
    rgba(174, 174, 174, 0.2)
);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.4s ease;
     backdrop-filter: blur(3px);
 }

 .template-card:hover .template-overlay {
     opacity: 1;
 }

 .template-action {
     color: #fff;
     font-weight: 700;
     font-size: 1.1rem;
     text-align: center;
     transform: translateY(20px);
     transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
     display: block;
     letter-spacing: 0.5px;
 }

 .template-card:hover .template-action {
     transform: translateY(0);
 }

 .template-card:hover {
     transform: translateY(-12px);
     box-shadow: 0 20px 50px rgba(246, 161, 46, 0.3);
 }

 .template-card:active {
     transform: translateY(-6px);
 }

 /* Stagger effect for items */
 .template-item-1 {
     animation: slideInUp 0.6s ease-out 0.1s both;
 }

 .template-item-2 {
     animation: slideInUp 0.6s ease-out 0.2s both;
 }

 .template-item-3 {
     animation: slideInUp 0.6s ease-out 0.3s both;
 }

 @keyframes slideInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Container */
 .container {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Section Styles */
 .about-section,
 .team-section {
     padding: 80px 20px;
     margin-bottom: 20px;
 }

 .about-section {
     background: #fff;
     border-radius: 15px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     margin: 40px 20px;
 }

 .team-section {
     background: linear-gradient(135deg, rgba(123, 208, 200, 0.1), rgba(146, 233, 0, 0.05));
     border-radius: 15px;
     margin: 40px 20px;
 }

 .about-section h2,
 .team-section h2 {
     font-size: 2.5rem;
     margin-bottom: 25px;
     color: var(--dark-text);
     text-align: center;
     font-weight: 700;
     position: relative;
     padding-bottom: 20px;
 }

 .about-section h2::after,
 .team-section h2::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
     border-radius: 2px;
 }

 .about-section p,
 .team-section p {
     font-size: 1.05rem;
     color: var(--light-text);
     margin-bottom: 30px;
     line-height: 1.8;
     text-align: justify;
 }

 .about-section ul {
     list-style: none;
     margin: 30px 0;
     display: grid;
     grid-template-columns: 1fr;
     gap: 15px;
 }

 .about-section li {
     padding-left: 35px;
     position: relative;
     font-size: 1.05rem;
     color: var(--light-text);
     line-height: 1.8;
 }

 .about-section li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--primary-gold);
     font-weight: bold;
     font-size: 1.3rem;
 }

 @media (max-width: 768px) {
     .about-section li {
         font-size: 1rem;
     }
 }

 .team-section ul {
     list-style: none;
     margin: 30px 0;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
 }

 .team-section li {
     background: #fff;
     padding: 25px;
     border-radius: 12px;
     font-size: 0.95rem;
     color: var(--light-text);
     line-height: 1.8;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     border-left: 4px solid var(--primary-gold);
     transition: all 0.3s ease;
 }

 .team-section li:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 /* Button Container */
 .action-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
     flex-wrap: wrap;
     margin-top: 40px;
 }

 .link-btn {
     display: inline-block;
     padding: 12px 28px;
     border-radius: 50px;
     background: transparent;
     color: var(--primary-gold);
     text-decoration: none;
     font-weight: 700;
     transition: all 0.3s ease;
     border: 2px solid var(--primary-gold);
 }

 .link-btn:hover {
     background: var(--primary-gold);
     color: #fff;
 }

 /* Footer */
 footer {
     background: linear-gradient(135deg, var(--dark-text), #2d3748);
     color: #fff;
     text-align: center;
     /* padding: 40px 20px; */
     margin-top: 60px;
     border-top: 3px solid var(--primary-gold);
 }

 footer p {
     font-size: 0.95rem;
     opacity: 0.9;
 }

 /* Language switcher */
 .lang-switch {
     position: relative;
     display: flex;
     align-items: center;
     gap: 10px;
     margin: 3px;
 }

 .lang-toggle {
     background: transparent;
     border: 2px solid var(--primary-gold);
     cursor: pointer;
     padding: 8px 12px;
     border-radius: 50px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     transition: all 0.3s ease;
     font-weight: 600;
     color: var(--primary-gold);
     font-size: 0.9rem;
 }

 .lang-toggle:hover {
     background: var(--primary-gold);
     color: #fff;
     transform: scale(1.05);
 }

 .lang-toggle img {
     width: 18px;
     height: 18px;
     opacity: 0.8;
 }

 .lang-menu {
     position: absolute;
     right: 0;
     top: 60px;
     background: #fff;
     border: 1px solid var(--border-light);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
     border-radius: 12px;
     min-width: 180px;
     display: none;
     flex-direction: column;
     z-index: 1100;
     overflow: hidden;
 }

 .lang-menu.active {
     display: flex;
 }

 .lang-menu a {
     padding: 12px 16px;
     color: var(--dark-text);
     text-decoration: none;
     font-weight: 500;
     border-bottom: 1px solid var(--border-light);
     white-space: nowrap;
     transition: all 0.2s ease;
     font-size: 0.95rem;
 }

 .lang-menu a:last-child {
     border-bottom: none;
 }

 .lang-menu a:hover {
     background: linear-gradient(135deg, rgba(246, 161, 46, 0.1), rgba(123, 208, 200, 0.1));
     color: var(--primary-gold);
     padding-left: 20px;
 }

 .lang-menu a.active {
     background: var(--primary-gold);
     color: #fff;
 }

 /* Features Grid Section */
 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     margin: 40px 0;
 }

 .feature-card {
     background: #fff;
     border-radius: 15px;
     padding: 40px 25px;
     text-align: center;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     border-top: 5px solid var(--primary-gold);
 }

 .feature-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     margin: 0 auto 20px;
     background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
 }

 .feature-card h3 {
     font-size: 1.4rem;
     color: var(--dark-text);
     margin: 15px 0;
     font-weight: 700;
 }

 .feature-card p {
     font-size: 0.95rem;
     color: var(--light-text);
     line-height: 1.7;
 }

 /* Content with Image Section */
 .content-with-image {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
     margin: 60px 0;
 }

 .content-with-image.reverse {
     grid-template-columns: 1fr 1fr;
     direction: rtl;
 }

 .content-with-image.reverse>* {
     direction: ltr;
 }

 .content-text h3 {
     font-size: 2rem;
     color: var(--dark-text);
     margin-bottom: 20px;
     font-weight: 700;
 }

 .content-text p {
     font-size: 1rem;
     color: var(--light-text);
     line-height: 1.8;
     margin-bottom: 20px;
 }

 .content-image {
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     background: linear-gradient(135deg, rgba(246, 161, 46, 0.1), rgba(123, 208, 200, 0.1));
     min-height: 350px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .content-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .content-image.no-image {
     background: linear-gradient(135deg, var(--primary-gold), var(--teal));
     color: #fff;
     font-size: 4rem;
     flex-direction: column;
     display: flex;
     font-size: 3.5rem;
     opacity: 0.8;
 }

 /* Services Grid */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 25px;
     margin: 40px 0;
 }

 .service-item {
     background: #fff;
     border-radius: 12px;
     padding: 30px;
     text-align: center;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     border-left: 4px solid transparent;
 }

 .service-item:nth-child(1) {
     border-left-color: var(--primary-gold);
 }

 .service-item:nth-child(2) {
     border-left-color: var(--secondary-gold);
 }

 .service-item:nth-child(3) {
     border-left-color: var(--teal);
 }

 .service-item:nth-child(4) {
     border-left-color: var(--lime);
 }

 .service-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
 }

 .service-icon {
     font-size: 3rem;
     margin-bottom: 15px;
 }

 .service-item h4 {
     font-size: 1.2rem;
     color: var(--dark-text);
     margin: 10px 0;
     font-weight: 700;
 }

 .service-item p {
     font-size: 0.9rem;
     color: var(--light-text);
     line-height: 1.6;
 }

 /* Testimonial Section */
 .testimonial-section {
     background: linear-gradient(135deg, rgba(246, 161, 46, 0.05), rgba(123, 208, 200, 0.05));
     border-radius: 15px;
     padding: 50px 30px;
     margin: 50px 0;
     text-align: center;
 }

 .testimonial-text {
     font-size: 1.2rem;
     color: var(--dark-text);
     font-weight: 500;
     margin-bottom: 20px;
     line-height: 1.8;
 }

 .testimonial-author {
     font-size: 1rem;
     color: var(--primary-gold);
     font-weight: 700;
 }

 /* Icon List */
 .icon-list {
     list-style: none;
     margin: 20px 0;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 15px;
 }

 .icon-list li {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 1rem;
     color: var(--light-text);
 }

 .icon-list li::before {
     content: '✓';
     display: flex;
     align-items: center;
     justify-content: center;
     width: 24px;
     height: 24px;
     background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
     color: #fff;
     border-radius: 50%;
     font-weight: bold;
     font-size: 0.9rem;
     flex-shrink: 0;
 }

 /* Background Image Section */
 .bg-image-section {
     background: linear-gradient(135deg, rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad1"><stop offset="0%25" style="stop-color:rgb(246,161,46);stop-opacity:0.1" /><stop offset="100%25" style="stop-color:rgb(123,208,200);stop-opacity:0.1" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad1)"/></svg>');
     background-size: cover;
     background-position: center;
     padding: 60px 30px;
     border-radius: 15px;
     color: #fff;
     text-align: center;
     margin: 50px 0;
 }

 .bg-image-section h3 {
     font-size: 2rem;
     margin-bottom: 15px;
 }

 .bg-image-section p {
     font-size: 1.05rem;
     margin-bottom: 25px;
     opacity: 0.95;
 }

 /* Stats Section */
 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin: 40px 0;
 }

 .stat-card {
     background: #fff;
     border-radius: 12px;
     padding: 30px;
     text-align: center;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     border-top: 4px solid var(--primary-gold);
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: 800;
     color: var(--primary-gold);
     margin-bottom: 10px;
 }

 .stat-label {
     font-size: 1rem;
     color: var(--light-text);
     font-weight: 600;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .main-header {
         padding: 60px 20px 50px;
     }

     .main-header h1 {
         font-size: 2.5rem;
     }

     .main-header .lead {
         font-size: 1.1rem;
     }

     .about-section h2,
     .team-section h2 {
         font-size: 2rem;
     }

     .header-btns {
         flex-direction: row;
         justify-content: center;
         gap: 12px;
     }

     .header-btns .icon-btn {
         width: 50px;
         height: 50px;
         font-size: 1.5rem;
     }

     .content-with-image,
     .content-with-image.reverse {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .content-with-image.reverse {
         direction: ltr;
     }

     .content-text h3 {
         font-size: 1.6rem;
     }

     .features-grid,
     .services-grid,
     .icon-list {
         grid-template-columns: 1fr;
     }

     .templates-grid {
         grid-template-columns: 1fr;
         gap: 25px;
     }

     .template-gallery-section h2 {
         font-size: 2rem;
     }

     .template-column h3 {
         font-size: 1.3rem;
     }

     .template-row-top {
         grid-template-columns: 1fr 1fr;
         gap: 14px;
     }

     .template-item-1,
     .template-item-2 {
         min-height: 200px;
     }

     .template-item-3 {
         min-height: 200px;
         width: 55%;
     }

     .feature-card {
         padding: 30px 20px;
     }

     .testimonial-section {
         padding: 30px 20px;
     }

     .testimonial-text {
         font-size: 1rem;
     }

     .bg-image-section {
         padding: 40px 20px;
     }

     .bg-image-section h3 {
         font-size: 1.5rem;
     }
 }

 @media (max-width: 480px) {
     .lang-menu {
         right: 0;
         top: 55px;
         min-width: 150px;
     }

     .lang-toggle {
         width: 60px;
         height: 40px;
         padding: 6px;
         font-size: 0;
     }

     .lang-toggle img {
         width: 20px;
         height: 20px;
     }

     .main-header h1 {
         font-size: 2rem;
     }

     .main-header .lead {
         font-size: 1rem;
     }

     .template-gallery-section h2 {
         font-size: 1.6rem;
     }

     .template-gallery-section>.container>p {
         font-size: 1rem;
         margin-bottom: 35px;
     }

     .template-column h3 {
         font-size: 1.1rem;
         padding-bottom: 12px;
     }

     .template-row-top {
         grid-template-columns: 1fr 1fr;
         gap: 12px;
     }

     .template-item-1,
     .template-item-2 {
         min-height: 160px;
     }

     .template-item-3 {
         min-height: 160px;
         width: 50%;
     }

     .template-card {
         border-radius: 12px;
     }

     .content-image {
         min-height: 250px;
     }

     .feature-card {
         padding: 20px 15px;
     }

     .feature-icon {
         width: 60px;
         height: 60px;
         font-size: 2rem;
     }

     .stat-number {
         font-size: 2rem;
     }
 }

 /* Flaticon Icon Styles */
 .flaticon-icon {
     font-size: 3rem;
     color: var(--primary-gold);
     margin-bottom: 15px;
     display: inline-block;
 }

 .feature-card .flaticon-icon {
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .service-item .flaticon-icon {
     font-size: 2.5rem;
     margin-bottom: 15px;
     display: block;
 }

 .content-image .flaticon-icon {
     font-size: 4rem;
 }

 /* FAQ Section */
 .faq-section {
     background: #fff;
     border-radius: 15px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     margin: 40px 20px;
     padding: 80px 20px;
 }

 .faq-container {
     max-width: 900px;
     margin: 0 auto;
 }

 .faq-item {
     background: var(--bg-light);
     border-radius: 12px;
     margin-bottom: 15px;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .faq-question {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 20px;
     cursor: pointer;
     font-weight: 600;
     color: var(--dark-text);
     transition: all 0.3s ease;
     user-select: none;
 }

 .faq-question:hover {
     background: linear-gradient(135deg, rgba(246, 161, 46, 0.1), rgba(123, 208, 200, 0.1));
 }

 .faq-question .toggle-icon {
     font-size: 1.3rem;
     color: var(--primary-gold);
     transition: transform 0.3s ease;
     display: inline-block;
 }

 .faq-item.active .faq-question .toggle-icon {
     transform: rotate(180deg);
 }

 .faq-answer {
     padding: 0 20px;
     max-height: 0;
     overflow: hidden;
     transition: all 0.3s ease;
     color: var(--light-text);
     line-height: 1.8;
 }

 .faq-item.active .faq-answer {
     padding: 0 20px 20px;
     max-height: 500px;
 }

 /* Newsletter Section */
 .newsletter-section {
     background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
     color: #fff;
     padding: 60px 20px;
     margin: 40px 20px;
     border-radius: 15px;
     text-align: center;
 }

 .newsletter-section h3 {
     font-size: 2.2rem;
     margin-bottom: 15px;
     font-weight: 700;
 }

 .newsletter-section p {
     font-size: 1.1rem;
     margin-bottom: 30px;
     opacity: 0.95;
 }

 .newsletter-form {
     display: flex;
     gap: 10px;
     max-width: 500px;
     margin: 0 auto;
     flex-wrap: wrap;
     justify-content: center;
 }

 .newsletter-form input {
     flex: 1;
     min-width: 250px;
     padding: 12px 20px;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     outline: none;
     transition: all 0.3s ease;
 }

 .newsletter-form input::placeholder {
     color: #ccc;
 }

 .newsletter-form input:focus {
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 }

 .newsletter-form button {
     padding: 12px 28px;
     background: #fff;
     color: var(--primary-gold);
     border: none;
     border-radius: 50px;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
     white-space: nowrap;
 }

 .newsletter-form button:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 }

 /* Partners/Testimonials Carousel */
 .partners-section {
     background: linear-gradient(135deg, rgba(123, 208, 200, 0.1), rgba(146, 233, 0, 0.05));
     padding: 80px 20px;
     margin: 40px 20px;
     border-radius: 15px;
 }

 .testimonials-carousel {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     max-width: 1100px;
     margin: 0 auto;
 }

 .testimonial-card {
     background: #fff;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     border-top: 4px solid var(--primary-gold);
     transition: all 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .testimonial-card .stars {
     color: var(--secondary-gold);
     font-size: 1.3rem;
     margin-bottom: 15px;
     letter-spacing: 3px;
 }

 .testimonial-card p {
     color: var(--light-text);
     margin-bottom: 20px;
     line-height: 1.8;
     font-style: italic;
 }

 .testimonial-author {
     font-weight: 600;
     color: var(--dark-text);
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .testimonial-author::before {
     content: '';
     width: 8px;
     height: 8px;
     background: var(--primary-gold);
     border-radius: 50%;
 }

 /* CTA Section Variants */
 .cta-section {
     background: linear-gradient(135deg, var(--teal), var(--lime));
     color: #fff;
     padding: 60px 20px;
     margin: 40px 20px;
     border-radius: 15px;
     text-align: center;
 }

 .cta-section h3 {
     font-size: 2.2rem;
     margin-bottom: 15px;
     font-weight: 700;
 }

 .cta-section p {
     font-size: 1.1rem;
     margin-bottom: 30px;
     opacity: 0.95;
 }

 /* Features List */
 .features-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     list-style: none;
 }

 .features-list li {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 15px;
     background: var(--bg-light);
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .features-list li:hover {
     background: linear-gradient(135deg, rgba(246, 161, 46, 0.1), rgba(123, 208, 200, 0.1));
     transform: translateX(5px);
 }

 .features-list li .fi {
     color: var(--primary-gold);
     font-size: 1.5rem;
     min-width: 30px;
 }

 /* Responsive Updates for New Sections */
 @media (max-width: 768px) {
     .newsletter-form {
         flex-direction: column;
     }

     .newsletter-form input,
     .newsletter-form button {
         width: 100%;
     }

     .faq-question {
         padding: 15px;
     }

     .faq-answer {
         padding: 0 15px;
     }

     .faq-item.active .faq-answer {
         padding: 0 15px 15px;
     }

     .testimonials-carousel {
         grid-template-columns: 1fr;
     }

     .cta-section h3 {
         font-size: 1.8rem;
     }

     .partners-section {
         padding: 60px 20px;
     }

     .faq-section {
         padding: 60px 20px;
     }
 }

 @media (max-width: 480px) {
     .flaticon-icon {
         font-size: 2.5rem;
     }

     .feature-card .flaticon-icon {
         font-size: 2rem;
     }

     .content-image .flaticon-icon {
         font-size: 3rem;
     }

     .newsletter-section h3,
     .cta-section h3 {
         font-size: 1.5rem;
     }

     .newsletter-section p,
     .cta-section p {
         font-size: 1rem;
     }

     .faq-question {
         font-size: 0.95rem;
     }
 }

 /* Footer styles to match provided design */
 .site-footer {
     background: #222831;
     color: #e6edf3;
     margin-top: 48px;
     /* padding-top: 48px; */
 }

 .site-footer .footer-top {
     /* padding: 18px 0 18px; */
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1.6fr 1fr 0.9fr 0.9fr;
     gap: 28px;
     align-items: start;
 }

 .footer-col h4 {
     color: #fff;
     margin-bottom: 12px;
     font-size: 1.15rem;
     text-decoration: underline;
 }

 .footer-logo img {
     height: 54px;
     display: block;
 }

 .footer-desc {
     color: rgba(230, 237, 243, 0.9);
     margin-top: 12px;
     line-height: 1.6;
 }

 .contact-list {
     list-style: none;
     padding: 0;
     margin: 0;
     color: rgba(230, 237, 243, 0.95);
 }

 .contact-list li {
     margin-bottom: 10px;
     display: flex;
     gap: 10px;
     align-items: center;
 }

 .contact-list a {
     color: inherit;
     text-decoration: none;
     text-align: initial;
 }

 .contact-list i {
     color: var(--primary-gold);
     font-size: 1.05rem;
     min-width: 20px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 8px;
 }

 .footer-links a {
     color: rgba(230, 237, 243, 0.9);
     text-decoration: none;
 }

 .footer-links a:hover {
     color: var(--teal);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.04);
     padding: 10px 0;
     /* margin-top: 18px; */
 }

 .footer-bottom-row {
     display: flex;
     gap: 10px;
     align-items: center;
     justify-content: space-between;
 }

 .footer-bottom-left a {
     color: rgba(230, 237, 243, 0.9);
     text-decoration: none;
     margin-right: 8px;
 }

 .footer-bottom-left .sep {
     color: rgba(255, 255, 255, 0.12);
     margin: 0 8px;
 }

 .footer-bottom-center {
     color: rgba(255, 255, 255, 0.75);
 }

 .footer-bottom-right a {
     color: var(--primary-gold);
     text-decoration: none;
 }

 @media (max-width: 992px) {
     .footer-grid {
         grid-template-columns: 1fr 1fr;
     }

     .footer-bottom-row {
         flex-direction: column;
         gap: 8px;
         text-align: center;
     }

     .footer-bottom-left {
         order: 1
     }

     .footer-bottom-center {
         order: 2
     }

     .footer-bottom-right {
         order: 3
     }
 }

 @media (max-width: 480px) {
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .footer-col {
         text-align: left;
     }
 }

 /* Getting Started / Services Split Section */
 .getting-started-section {
     padding: 85px 0;
 }

 .split-grid {
     display: grid;
     grid-template-columns: 1fr 420px;
     gap: 36px;
     align-items: start;
 }

 .split-left h2 {
     font-size: 2.1rem;
     color: var(--dark-text);
     margin-bottom: 8px;
 }

 .split-lead {
     color: var(--teal);
     font-weight: 700;
     margin-bottom: 18px;
     font-size: 1.05rem;
 }

 .seo-paragraph {
     color: var(--light-text);
     line-height: 1.8;
     margin-bottom: 14px;
 }

 .split-right .services-list {
     list-style: none;
     margin: 0;
     padding: 0;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .split-right .services-list li {
     background: #fff;
     border-radius: 12px;
     padding: 18px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
     text-align: left;
 }

 .split-right .services-list li i {
     font-size: 1.6rem;
     color: var(--primary-gold);
     margin-bottom: 8px;
     display: block;
 }

 .split-right .services-list li h4 {
     margin: 6px 0;
     color: var(--dark-text);
     font-size: 1rem;
 }

 .split-right .services-list li p {
     margin: 0;
     color: var(--light-text);
     font-size: 0.9rem;
 }

 @media (max-width: 992px) {
     .split-grid {
         grid-template-columns: 1fr 360px;
     }
 }

 @media (max-width: 768px) {
     .split-grid {
         grid-template-columns: 1fr;
     }

     .split-right .services-list {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 480px) {
     .split-right .services-list {
         grid-template-columns: 1fr;
     }
 }

 /* Reviews hero */
 .reviews-hero {
     position: relative;
     background-size: cover;
     background-position: center;
     padding: 72px 0;
     color: #fff;
 }

 .reviews-hero .overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.55));
 }

 .reviews-inner {
     position: relative;
     z-index: 2;
     display: flex;
     align-items: center;
     min-height: 220px;
 }

 .reviews-content {
     max-width: 720px;
 }

 .reviews-content h2 {
     font-size: 2.2rem;
     color: var(--teal);
     margin-bottom: 10px;
     font-weight: 700;
 }

 .reviews-content p {
     color: rgba(255, 255, 255, 0.95);
     line-height: 1.8;
 }

 @media (max-width: 768px) {
     .reviews-hero {
         padding: 40px 0;
     }

     .reviews-content h2 {
         font-size: 1.6rem;
     }
 }

 /* Carousel Responsive Styles */
 @media (max-width: 1200px) {
     .carousel-item {
         flex: 0 0 calc(33.333% - 14px);
         min-width: 180px;
     }

     .template-card {
         height: 220px;
     }
 }

 @media (max-width: 992px) {
     .carousel-item {
         flex: 0 0 calc(50% - 10px);
         min-width: 160px;
     }

     .templates-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .carousel-arrow {
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
     }

     .accordion-header {
         flex-direction: column;
         align-items: flex-start;
     }

     .accordion-toggle {
         margin-left: 0;
         margin-top: 15px;
         align-self: flex-end;
     }

     .template-card {
         height: 200px;
     }
 }

 @media (max-width: 768px) {
     .carousel-item {
         flex: 0 0 calc(60% - 10px);
         min-width: 160px;
     }

     .template-card {
         height: 220px;
     }

     .carousel-container {
         gap: 10px;
     }

     .template-carousel {
         gap: 15px;
         padding: 10px 0;
     }

     .carousel-arrow {
         width: 38px;
         height: 38px;
         font-size: 1.1rem;
     }

     .template-action {
         font-size: 0.9rem;
     }

     .accordion-header {
         padding: 20px;
     }

     .accordion-header h3 {
         font-size: 1.2rem;
     }

     .accordion-description {
         font-size: 0.85rem;
     }

     .accordion-carousel {
         padding: 20px;
     }

     .accordion-content.active {
         max-height: 350px;
     }
 }

 @media (max-width: 640px) {
     .carousel-item {
         flex: 0 0 calc(100% - 20px);
         min-width: calc(100% - 20px);
     }

     .template-card {
         height: 280px;
         border-radius: 12px;
     }

     .carousel-container {
         gap: 8px;
     }

     .template-carousel {
         gap: 20px;
         padding: 15px 0;
         scroll-padding: 0 10px;
     }

     .carousel-arrow {
         width: 40px;
         height: 40px;
         font-size: 1.1rem;
         flex-shrink: 0;
     }

     .template-action {
         font-size: 0.95rem;
     }

     .accordion-header {
         padding: 15px;
     }

     .accordion-header h3 {
         font-size: 1.1rem;
     }

     .accordion-description {
         font-size: 0.8rem;
     }

     .accordion-carousel {
         padding: 15px;
     }

     .accordion-content.active {
         max-height: 350px;
     }
 }

 @media (max-width: 480px) {
     .carousel-item {
         flex: 0 0 calc(100% - 20px);
         min-width: calc(100% - 20px);
     }

     .template-card {
         height: 225px;
     }

     .carousel-arrow {
         width: 36px;
         height: 36px;
         font-size: 1rem;
     }

     .carousel-container {
         gap: 8px;
     }

     .template-carousel {
         gap: 20px;
         padding: 10px 0;
     }

     .template-action {
         font-size: 0.85rem;
     }

     .templates-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .accordion-header {
         padding: 12px;
     }

     .accordion-header h3 {
         font-size: 1rem;
     }

     .accordion-description {
         font-size: 0.7rem;
     }

     .accordion-toggle {
         width: 35px;
         height: 35px;
         font-size: 1rem;
     }

     .accordion-carousel {
         padding: 12px;
     }

     .accordion-content.active {
         max-height: 300px;
     }
 }