:root {
  --coral: #E07A5F;
  --sand: #fffef6;
  --ocean: #3D5A80;
  --golden: #fcecd4;
  --seafoam: #31737c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--ocean);
  background-color: var(--sand);
  line-height: 1.5;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1.2;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

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

header {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--seafoam) 100%);
  padding: 15px 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(61, 90, 128, 0.15);
  padding-bottom: 25px;
}

header.hidden {
  transform: translateY(-100%);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sand);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 1.5rem;
    gap: 7px;
    font-weight: 700;
    color: var(--primary-color);
}
.logo>img{
    width: 60px;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
        border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.logo span{
  color: #F4F1DE;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: var(--sand);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: rgba(244, 241, 222, 0.2);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  color: var(--sand);
  font-size: 1.5rem;
  padding: 5px;
}

.hero {
  background: linear-gradient(135deg, rgba(242, 204, 143, 0.3) 0%, rgba(129, 178, 154, 0.3) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);

}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 122, 95, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61, 90, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--ocean);
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 25px;
  color: var(--ocean);
  opacity: 0.9;
}

.hero-home::before {
  animation: float 6s ease-in-out infinite;
}

.hero-home::after {
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

.hero-services {
  background: linear-gradient(135deg, rgba(129, 178, 154, 0.25) 0%, rgba(224, 122, 95, 0.25) 100%);
}

.hero-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(61, 90, 128, 0.05) 35px,
    rgba(61, 90, 128, 0.05) 70px
  );
  z-index: 0;
}

.hero-services::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 10%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(242, 204, 143, 0.3) 0%, transparent 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transform: rotate(25deg);
}

.hero-portfolio {
  background: linear-gradient(120deg, rgba(224, 122, 95, 0.2) 0%, rgba(242, 204, 143, 0.3) 100%);
}

.hero-portfolio::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(129, 178, 154, 0.15);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transform: rotate(15deg);
}

.hero-portfolio::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 8%;
  width: 250px;
  height: 250px;
  background: rgba(61, 90, 128, 0.12);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  transform: rotate(-20deg);
}

.hero-about {
  background: linear-gradient(150deg, rgba(61, 90, 128, 0.15) 0%, rgba(129, 178, 154, 0.25) 100%);
}

.hero-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(242, 204, 143, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(224, 122, 95, 0.12) 0%, transparent 50%);
}

.hero-about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: 
    radial-gradient(ellipse at bottom, var(--sand) 0%, transparent 70%);
}

.hero-tips {
  background: linear-gradient(135deg, rgba(242, 204, 143, 0.35) 0%, rgba(224, 122, 95, 0.2) 100%);
}

.hero-tips::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(61, 90, 128, 0.08) 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

.hero-tips::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: rgba(129, 178, 154, 0.15);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-contacts {
  background: linear-gradient(125deg, rgba(129, 178, 154, 0.3) 0%, rgba(61, 90, 128, 0.2) 100%);
}

.hero-contacts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(224, 122, 95, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 122, 95, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-contacts::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 204, 143, 0.2) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(30px);
}

.slider-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(129, 178, 154, 0.05) 0%, rgba(242, 204, 143, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(61, 90, 128, 0.15);
  background: white;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 500px;
}

.slide-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slide.active .slide-image img {
  transform: scale(1.05);
}

.slide-text {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.slide-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--ocean);
  position: relative;
  padding-bottom: 15px;
}

.slide-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--seafoam) 100%);
  border-radius: 2px;
}

.slide-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ocean);
  opacity: 0.85;
  margin-bottom: 25px;
}

.slide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.slide-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--golden);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--ocean);
  font-weight: 500;
}

.slide-features span i {
  color: var(--coral);
  font-size: 0.85rem;
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(61, 90, 128, 0.2);
  pointer-events: all;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-btn:hover {
  background: var(--coral);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.4);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  padding: 0 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--ocean);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  transform: scale(1.2);
  background: var(--seafoam);
}

.dot.active {
  background: var(--coral);
  border-color: var(--coral);
  width: 30px;
  border-radius: 6px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--coral);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 122, 95, 0.3);
}

.btn:hover {
  background-color: var(--ocean);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 90, 128, 0.4);
}

.btn-secondary {
  background-color: var(--seafoam);
  box-shadow: 0 4px 15px rgba(129, 178, 154, 0.3);
}

.btn-secondary:hover {
  background-color: var(--ocean);
}

section {
  padding: 50px 0;
}

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

.section-header h2 {
  margin-bottom: 10px;
}

.section-header p {
  color: var(--ocean);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 25px;
  margin-top: 30px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(61, 90, 128, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(61, 90, 128, 0.15);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--coral);
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ocean);
  opacity: 0.85;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.about-section {
  background: linear-gradient(135deg, rgba(129, 178, 154, 0.1) 0%, rgba(242, 204, 143, 0.1) 100%);
}

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

.about-text h2 {
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(61, 90, 128, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--golden);
}

.feature-item i {
  font-size: 2.2rem;
  color: var(--seafoam);
  margin-bottom: 12px;
}

.feature-item h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature-item p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.cta-section {
  background: linear-gradient(135deg, var(--coral) 0%, var(--golden) 100%);
  text-align: center;
  color: white;
  padding: 60px 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 15px;
}

.cta-section p {
  margin-bottom: 25px;
  font-size: 1.05rem;
  opacity: 0.95;
}

.contact-section {
  background: var(--sand);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(61, 90, 128, 0.1);
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--ocean);
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--coral);
  margin-top: 3px;
}

.contact-item-content h4 {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.contact-item-content p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-form {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(61, 90, 128, 0.1);
}

.contact-form h3 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ocean);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(61, 90, 128, 0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: var(--sand);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 10px;
  margin: 18px 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.85rem;
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400;
}

.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(61, 90, 128, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

footer {
  background: var(--ocean);
  color: var(--sand);
  padding: 30px 0 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 25px;
}

.footer-section h4 {
  color: var(--golden);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.footer-section p,
.footer-section a {
  font-size: 0.85rem;
  margin-bottom: 8px;
  opacity: 0.9;
  display: block;
}

.footer-section a:hover {
  color: var(--coral);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 241, 222, 0.2);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--coral);
  opacity: 1;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 90, 128, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: white;
  padding: 35px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.popup-overlay.active .popup {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  font-size: 1.5rem;
  color: var(--ocean);
  padding: 5px 10px;
  line-height: 1;
}

.popup h3 {
  margin-bottom: 15px;
  color: var(--ocean);
}

.popup p {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.9rem;
}

.popup-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.popup-buttons button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.thank-you-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  padding: 40px;
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--seafoam);
  margin-bottom: 20px;
}

.thank-you-content h1 {
  margin-bottom: 15px;
}

.thank-you-content p {
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.policy-page {
  padding: 50px 0;
  min-height: 60vh;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(61, 90, 128, 0.08);
}

.policy-content h1 {
  margin-bottom: 10px;
}

.policy-content .update-date {
  font-size: 0.85rem;
  color: var(--ocean);
  opacity: 0.7;
  margin-bottom: 25px;
}

.policy-content h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.policy-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.policy-content p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.policy-content ul {
  margin: 10px 0 15px 25px;
  line-height: 1.8;
}

.policy-content li {
  margin-bottom: 6px;
}
@media (max-width: 900px){
.logo span{
  font-size: 17px;
}
nav a{
  padding: 6px 8px;
}
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 3333333333333333333333;
    background: #3D5A80;
    padding: 15px;
    gap: 10px;
  }
  
  nav.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .policy-content {
    padding: 25px;
  }
  
  .slider-section {
    padding: 40px 0;
  }
  
  .slide-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .slide-image {
    min-height: 300px;
    order: 1;
  }
  
  .slide-text {
    padding: 35px 25px;
    order: 2;
  }
  
  .slide-text h2 {
    font-size: 1.6rem;
  }
  
  .slide-text p {
    font-size: 0.95rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .slider-controls {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .thank-you-content{
    padding: 0px;
  }
  .slider-btn{
    display: none;
  }
  .logo span{
    display: none;
  }
  body {
    font-size: 14px;
  }
  
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero h1 { font-size: 1.7rem; }
  
  section {
    padding: 35px 0;
  }
  
  .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
  
  .card {
    padding: 20px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .popup {
    padding: 25px;
  }
  
  .policy-content {
    padding: 20px;
  }
  
  .slider-section {
    padding: 30px 0;
  }
  
  .slide-image {
    min-height: 250px;
  }
  
  .slide-text {
    padding: 25px 20px;
  }
  
  .slide-text h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .slide-text p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .slide-features {
    gap: 10px;
  }
  
  .slide-features span {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .dot.active {
    width: 25px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 15px;
  }
  
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.2rem; }
  
  .hero h1 { font-size: 1.5rem; }
  
  .btn {
    padding: 9px 18px;
    font-size: 0.85rem;
  }
}
