/* ================================
   STAMBH LEGAL - MAIN STYLESHEET
   Design Direction: Refined Legal Elegance
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@300;400;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* === CSS Variables === */
:root {
   /* Colors - Deep Navy & Burnished Gold */
   --navy-dark: #0a1628;
   --navy-primary: #1a2942;
   --navy-medium: #2d4263;
   --navy-light: #3e5570;
   
   --gold-primary: #d4a574;
   --gold-dark: #b8834e;
   --gold-light: #e8c9a1;
   --gold-pale: #f5e6d3;
   
   --cream: #faf8f5;
   --cream-dark: #f0ebe4;
   --text-primary: #1a1a1a;
   --text-secondary: #4a4a4a;
   --text-light: #7a7a7a;
   
   --white: #ffffff;
   --border-light: #e5dfd6;
   --border-medium: #d0c4b3;
   
   /* Shadows */
   --shadow-sm: 0 2px 8px rgba(26, 41, 66, 0.06);
   --shadow-md: 0 4px 16px rgba(26, 41, 66, 0.1);
   --shadow-lg: 0 8px 32px rgba(26, 41, 66, 0.12);
   --shadow-xl: 0 16px 48px rgba(26, 41, 66, 0.15);
   
   /* Typography */
   --font-display: 'Crimson Pro', serif;
   --font-body: 'Montserrat', sans-serif;
   
   /* Spacing */
   --section-padding: 100px;
   /* --container-max: 1280px; */
   --container-max: 1180px;

}

/* === Reset & Base === */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
}

body {
   font-family: var(--font-body);
   color: var(--text-primary);
   background: var(--cream);
   line-height: 1.7;
   overflow-x: hidden;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
   font-family: var(--font-display);
   font-weight: 700;
   line-height: 1.2;
   color: var(--navy-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
   font-size: 1rem;
   line-height: 1.8;
   color: var(--text-secondary);
}

a {
   text-decoration: none;
   color: inherit;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Navigation === */
.top-bar {
   background: var(--navy-dark);
   padding: 10px 0;
   font-size: 0.85rem;
   color: var(--cream);
   font-family: var(--font-body);
}

/*.top-bar-content {
   max-width: var(--container-max);
   margin: 0 auto;
   padding: 0 5%;
   display: flex;
   justify-content: space-between;
   align-items: center;
}*/


.top-bar-content {
   width: 100%;
   margin: 0;
   padding-left: 24px;
   padding-right: 24px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}




.top-bar-left,
.top-bar-right {
   display: flex;
   gap: 25px;
   align-items: center;
}

.top-bar a {
   color: var(--gold-light);
   transition: color 0.3s;
}

.top-bar a:hover {
   color: var(--gold-primary);
}

.top-bar i {
   margin-right: 6px;
   color: var(--gold-primary);
}

nav {
   background: var(--white);
   position: sticky;
   top: 0;
   z-index: 1000;
   box-shadow: var(--shadow-sm);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
   box-shadow: var(--shadow-md);
}

/* .nav-container {
   max-width: var(--container-max);
   margin: 0 auto;
   padding: 0 5%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 90px;
} */

.nav-container {
   width: 100%;
   margin: 0;
   padding-left: 16px;
   padding-right: 16px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 80px;
}

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




/* .logo {
   font-family: var(--font-display);
   font-size: 2rem;
   font-weight: 700;
   letter-spacing: 0.5px;
   color: var(--navy-dark);
   position: relative;
   display: flex;
   align-items: center;
   gap: 12px;
} */

.logo {
   font-family: var(--font-display);
   font-size: 2rem;
   font-weight: 700;
   letter-spacing: 0.5px;
   color: var(--navy-dark);
   display: flex;
   align-items: center;
   gap: 10px;
   white-space: nowrap;
}

.logo img {
    height: 70px;          /* controls logo size */
    width: auto;           /* keeps aspect ratio */
    max-width: 180px;      /* safety limit */
    object-fit: contain;
    display: block;
}


/* .logo::before {
   content: '';
   width: 4px;
   height: 45px;
   background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark));
   border-radius: 2px;
} */

.logo::before {
   content: '';
   width: 4px;
   height: 45px;
   background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark));
   border-radius: 2px;
   align-self: center;
}


.logo span {
   color: var(--gold-primary);
   font-weight: 400;
   font-style: italic;
}

.nav-links {
   display: flex;
   gap: 5px;
   align-items: center;
}

.nav-links a {
   padding: 12px 20px;
   font-size: 0.95rem;
   font-weight: 500;
   color: var(--navy-medium);
   position: relative;
   transition: color 0.3s;
   letter-spacing: 0.3px;
}

.nav-links a::after {
   content: '';
   position: absolute;
   bottom: 8px;
   left: 50%;
   width: 0;
   height: 2px;
   background: var(--gold-primary);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   transform: translateX(-50%);
}

.nav-links a:hover {
   color: var(--navy-dark);
}

.nav-links a:hover::after {
   width: 60%;
}

.nav-links a.active {
   color: var(--gold-dark);
   font-weight: 600;
}

.cta-button {
   background: var(--gold-primary);
   color: var(--white);
   padding: 12px 28px;
   border-radius: 4px;
   font-weight: 600;
   margin-left: 15px;
   box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
   transition: all 0.3s;
}

.cta-button:hover {
   background: var(--gold-dark);
   transform: translateY(-2px);
   box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
}

/* Mobile Menu */
.menu-toggle {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
   padding: 10px;
}

.menu-toggle span {
   width: 28px;
   height: 3px;
   background: var(--navy-dark);
   border-radius: 2px;
   transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
   transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
   transform: rotate(-45deg) translate(7px, -7px);
}

/* === Hero Section === */
.hero {
   position: relative;
   min-height: 600px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(135deg, 
      rgba(10, 22, 40, 0.95) 0%, 
      rgba(26, 41, 66, 0.92) 50%,
      rgba(45, 66, 99, 0.88) 100%),
      url('banner_image.png');
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   color: var(--white);
   text-align: center;
   overflow: hidden;
}

.hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a574' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
   opacity: 0.3;
   animation: backgroundScroll 60s linear infinite;
}

@keyframes backgroundScroll {
   0% { background-position: 0 0; }
   100% { background-position: 60px 60px; }
}

.hero-content {
   position: relative;
   z-index: 2;
   max-width: 900px;
   padding: 60px 5%;
   animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(40px);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.hero h1 {
   color: var(--white);
   margin-bottom: 25px;
   text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
   animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
   font-size: clamp(1.1rem, 2vw, 1.4rem);
   color: var(--gold-light);
   margin-bottom: 35px;
   font-weight: 400;
   line-height: 1.6;
   animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
   display: flex;
   gap: 20px;
   justify-content: center;
   flex-wrap: wrap;
   animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary,
.btn-secondary {
   padding: 16px 40px;
   font-size: 1rem;
   font-weight: 600;
   border-radius: 4px;
   cursor: pointer;
   transition: all 0.3s;
   font-family: var(--font-body);
   letter-spacing: 0.5px;
}

.btn-primary {
   background: var(--gold-primary);
   color: var(--white);
   border: 2px solid var(--gold-primary);
   box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-primary:hover {
   background: var(--gold-dark);
   border-color: var(--gold-dark);
   transform: translateY(-3px);
   box-shadow: 0 10px 30px rgba(212, 165, 116, 0.5);
}

.btn-secondary {
   background: transparent;
   color: var(--white);
   border: 2px solid var(--white);
}

.btn-secondary:hover {
   background: var(--white);
   color: var(--navy-dark);
}

/* Decorative Element */
.hero-decoration {
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 100%;
   height: 120px;
   background: var(--cream);
   clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* === Container === */
.container {
   max-width: var(--container-max);
   margin: 0 auto;
   padding: var(--section-padding) 5%;
}

.section-header {
   text-align: center;
   margin-bottom: 60px;
}

.section-label {
   font-size: 0.85rem;
   font-weight: 600;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--gold-primary);
   margin-bottom: 15px;
   display: inline-block;
}

.section-title {
   font-size: clamp(2rem, 4vw, 3rem);
   color: var(--navy-dark);
   margin-bottom: 20px;
   position: relative;
   display: inline-block;
}

.section-title::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 3px;
   background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-description {
   max-width: 700px;
   margin: 20px auto 0;
   font-size: 1.1rem;
   color: var(--text-secondary);
   line-height: 1.8;
}

/* === Cards & Grid === */
.grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 35px;
   margin-top: 50px;
}

.card {
   background: var(--white);
   border-radius: 8px;
   padding: 40px 35px;
   box-shadow: var(--shadow-sm);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid var(--border-light);
   position: relative;
   overflow: hidden;
}

.card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 4px;
   background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-lg);
   border-color: var(--gold-pale);
}

.card:hover::before {
   transform: scaleX(1);
}

.card-icon {
   width: 70px;
   height: 70px;
   background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 25px;
   font-size: 1.8rem;
   color: var(--gold-dark);
   transition: all 0.4s;
}

.card:hover .card-icon {
   transform: scale(1.1) rotate(5deg);
   background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
   color: var(--white);
}

.card h3 {
   font-size: 1.5rem;
   margin-bottom: 15px;
   color: var(--navy-dark);
}

.card p {
   color: var(--text-secondary);
   line-height: 1.7;
}

/* === Alternate Section (Dark Background) === */
.section-dark {
   background: var(--navy-dark);
   color: var(--white);
   position: relative;
   overflow: hidden;
}

.section-dark::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4a574' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
   opacity: 0.4;
}

.section-dark h2,
.section-dark h3,
.section-dark .section-title {
   color: var(--white);
}

.section-dark p,
.section-dark .section-description {
   color: rgba(255, 255, 255, 0.85);
}

.section-dark .section-label {
   color: var(--gold-light);
}

/* === Footer === */
.footer-main {
   background: var(--navy-dark);
   color: var(--cream);
   padding: 80px 0 0;
   position: relative;
}

/* .footer-content {
   max-width: var(--container-max);
   margin: 0 auto;
   padding: 0 5%;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 50px;
   margin-bottom: 60px;
} */

.footer-content {
   width: 100%;
   margin: 0;
   padding-left: 24px;
   padding-right: 24px;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 50px;
   margin-bottom: 60px;
}


.footer-about h3 {
   font-size: 2rem;
   color: var(--white);
   margin-bottom: 20px;
}

.footer-about p {
   color: rgba(255, 255, 255, 0.7);
   line-height: 1.8;
   margin-bottom: 25px;
}

.footer-section h4 {
   color: var(--gold-light);
   font-size: 1.1rem;
   margin-bottom: 20px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.footer-links {
   list-style: none;
}

.footer-links li {
   margin-bottom: 12px;
}

.footer-links a {
   color: rgba(255, 255, 255, 0.7);
   display: flex;
   align-items: center;
   gap: 8px;
   transition: all 0.3s;
   font-size: 0.95rem;
}

.footer-links a:hover {
   color: var(--gold-light);
   padding-left: 5px;
}

.footer-links i {
   color: var(--gold-primary);
   font-size: 0.8rem;
}

.contact-item {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin-bottom: 15px;
   color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
   color: var(--gold-primary);
   margin-top: 4px;
   font-size: 1.1rem;
}

.social-links {
   display: flex;
   gap: 15px;
   margin-top: 25px;
}

.social-links a {
   width: 45px;
   height: 45px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--gold-light);
   font-size: 1.2rem;
   transition: all 0.3s;
   border: 1px solid rgba(212, 165, 116, 0.2);
}

.social-links a:hover {
   background: var(--gold-primary);
   color: var(--white);
   transform: translateY(-4px);
   border-color: var(--gold-primary);
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding: 30px 0;
   text-align: center;
   color: rgba(255, 255, 255, 0.6);
   font-size: 0.9rem;
}

/* .footer-bottom-content {
   max-width: var(--container-max);
   margin: 0 auto;
   padding: 0 5%;
   display: flex;
   justify-content: space-between;
   align-items: center;
} */

.footer-bottom-content {
   width: 100%;
   margin: 0;
   padding-left: 24px;
   padding-right: 24px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.footer-content * {
   text-align: left;
}


.footer-legal {
   display: flex;
   gap: 25px;
}

.footer-legal a {
   color: rgba(255, 255, 255, 0.6);
   transition: color 0.3s;
}

.footer-legal a:hover {
   color: var(--gold-light);
}

/* === Disclaimer Modal === */
.modal-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(10, 22, 40, 0.95);
   backdrop-filter: blur(8px);
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 10000;
   animation: fadeIn 0.3s ease;
}

.modal-content {
   background: var(--white);
   max-width: 700px;
   width: 90%;
   max-height: 85vh;
   overflow-y: auto;
   border-radius: 12px;
   box-shadow: var(--shadow-xl);
   position: relative;
   animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@keyframes slideUp {
   from {
      opacity: 0;
      transform: translateY(50px);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.modal-header {
   background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
   color: var(--white);
   padding: 40px;
   text-align: center;
   position: relative;
}

.modal-header::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 100px;
   height: 4px;
   background: var(--gold-primary);
}

.modal-header h3 {
   font-size: 2rem;
   color: var(--white);
   margin-bottom: 10px;
}

.modal-header p {
   color: var(--gold-light);
   font-size: 0.95rem;
}

.modal-body {
   padding: 40px;
}

.modal-body p {
   margin-bottom: 20px;
   line-height: 1.8;
}

.modal-body ul {
   list-style: none;
   margin: 25px 0;
}

.modal-body li {
   padding: 15px 0;
   padding-left: 35px;
   position: relative;
   border-bottom: 1px solid var(--border-light);
   line-height: 1.7;
}

.modal-body li:last-child {
   border-bottom: none;
}

.modal-body li::before {
   content: '✓';
   position: absolute;
   left: 0;
   top: 15px;
   width: 24px;
   height: 24px;
   background: var(--gold-pale);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--gold-dark);
   font-weight: bold;
   font-size: 0.9rem;
}

.modal-footer {
   padding: 0 40px 40px;
   display: flex;
   justify-content: center;
}

.modal-btn {
   background: var(--gold-primary);
   color: var(--white);
   padding: 16px 50px;
   border: none;
   border-radius: 6px;
   font-size: 1.05rem;
   font-weight: 600;
   cursor: pointer;
   font-family: var(--font-body);
   letter-spacing: 0.5px;
   transition: all 0.3s;
   box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.modal-btn:hover {
   background: var(--gold-dark);
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
}

.modal-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === Utilities === */
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.mt-50 { margin-top: 50px; }

/* === Responsive Design === */
@media (max-width: 1024px) {
   .footer-content {
       grid-template-columns: 1fr 1fr;
   }
}

@media (max-width: 768px) {
   :root {
       --section-padding: 60px;
   }
   
   .top-bar {
       display: none;
   }
   
   .nav-container {
       height: 70px;
   }
   
   .menu-toggle {
       display: flex;
   }
   
   .nav-links {
       position: fixed;
       top: 70px;
       right: -100%;
       width: 280px;
       height: calc(100vh - 70px);
       background: var(--white);
       flex-direction: column;
       align-items: stretch;
       padding: 30px 0;
       box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
       transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
       overflow-y: auto;
   }
   
   .nav-links.active {
       right: 0;
   }
   
   .nav-links a {
       padding: 15px 30px;
       border-bottom: 1px solid var(--border-light);
   }
   
   .nav-links a::after {
       display: none;
   }
   
   .cta-button {
       margin: 15px 30px 0;
   }
   
   .hero {
       min-height: 500px;
       background-attachment: scroll;
   }
   
   .hero-buttons {
       flex-direction: column;
       align-items: stretch;
   }
   
   .btn-primary,
   .btn-secondary {
       width: 100%;
       text-align: center;
   }
   
   .grid {
       grid-template-columns: 1fr;
   }
   
   .footer-content {
       grid-template-columns: 1fr;
       gap: 40px;
   }
   
   .footer-bottom-content {
       flex-direction: column;
       gap: 15px;
   }
   
   .footer-legal {
       flex-direction: column;
       gap: 10px;
   }

   .logo img {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
   .modal-content {
       width: 95%;
   }
   
   .modal-header,
   .modal-body,
   .modal-footer {
       padding: 25px;
   }
}
