 :root {
    --button-blue: #0071e3;
    --button-blue-hover: #0065ca;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}
body {
    background-color: #ffffff;
    color: #333;
    text-align: center;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
width: 200px;
}
.menu {
    display: flex;
    gap: 20px;
}
.menu a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
}
.menu a:hover {
    color: #0071e3;
}
.banner {
    background: url('https://dehhani.uk/media/uploads/16/1742772350545.jpg  ') no-repeat center center/cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 50px;
}
.banner h1 {
    font-size: 3rem;
    font-weight: bold;
}

.banner p {
    font-size: 1.5rem;
    margin-top: 10px;
}
.banner button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    background: #ffffff;
    border: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
    border-radius: 20px;
}

.banner button:hover {
    background: #efefef;
}

.content-section {
    display: flex;
    justify-content: center;
    padding: 60px 40px;
    gap: 5%;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 40%;
    overflow: hidden;
    position: relative;
}

.left .advert,
.left .customer {
    position: relative;
    width: 100%;
}

.left .advert img,
.left .customer img {
    width: 100%;
    height: auto;
    max-height: 1000px;
    object-fit: cover;
    filter: brightness(80%);
    border-radius: 25px;
}

.left .overlay {
    position: absolute;
    top: 5%;
    left: 5%;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    max-width: 80%;
}

.left .customer {
    margin-top: 10px;
}

.left .overlay h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.left .overlay p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.left .overlay button {
    padding: 10px 20px;
    font-size: 1rem;
    background: var(--button-blue);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.left .overlay button:hover {
    background: var(--button-blue-hover);
}

.product-detail {
    padding: 10px 0px;
}

.product-detail ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.product-detail ul li {
    font-size: 1.2rem;
    color: #555;
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.right {
    flex: 50%;
    text-align: left;
}
.right h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #000000;
}
.right p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
    margin-bottom: 10px;
}

table {
    font-size: 1.2rem;
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

tr:last-child td {
    border-bottom: none;
}

td:first-child {
    font-weight: bold;
    width: 40%;
}

tr {
    height: 50px;
}

/* Dropdown */

.dropdown {
    margin-top: 20px;
}

.dropdown-item {
    position: relative;
}

.dropdown label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    color: rgb(0, 0, 0);
    border-radius: 5px;
    position: relative;
}

.dropdown label::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.dropdown input {
    display: none;
}

.dropdown .content {
    display: none;
    padding: 20px;
    border-radius: 5px;
    margin-top: 5px;
}

.dropdown input:checked + label + .content {
    display: block;
}

.dropdown input:checked + label::after {
    transform: rotate(135deg);
}

.dropdown hr {
    width: 100%;
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px auto;
}

/* Image Section */

.image-section {
    display: flex;
    gap: 10px;
    padding: 60px 40px;
}
.image-box {
    flex: 1;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 20px;
    position: relative;
    border-radius: 20px;
}
.image-box .content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.image-box.top .content {
    top: 20px;
}
.image-box.bottom .content {
    bottom: 20px;
}
.image-box h2 {
    font-size: 2rem;
}
.image-box p {
    font-size: 1.2rem;
    margin-top: 10px;
}
.image-box button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    background: var(--button-blue);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 20px;
}

.image-box button:hover {
    background: var(--button-blue-hover);
}

.dark {
    color: black;
}

.light {
    color: white;
}

.light button {
    background-color: white;
    color: black;
}

.light button:hover {
    background-color: rgb(243, 243, 243);
}

/* Footer */

footer {
    background: #111;
    color: white;
    padding: 20px 40px;
    width: 100%;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    display: flex;
    align-items: center;
}

.footer-section.left {
    justify-content: flex-start;
}

.footer-section.center {
    justify-content: center;
    text-align: center;
}

.footer-section.right {
    justify-content: flex-end;
}

.footer-section img {
    height: 40px;
}

.footer-section p {
    font-size: 0.8rem;
}

footer nav {
    display: flex;
    gap: 20px;
}

footer nav a {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    transition: color 0.3s;
}

footer nav a:hover {
    color: #dfdfdf;
}

footer .watermark {
    margin-top: 20px;
    text-align: center;
}

footer .watermark img {
    height: 40px;
}

/* Reviews */

.review-section {
    text-align: left;
    padding: 20px 40px;
    width: 100%;
}

.info-sections {
    text-align: left;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.info-section {
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    width: 30%;
    padding: 10px;
}

.info-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -21px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    margin-bottom: 5px;
}

.info-description {
    font-size: 14px;
    color: #666;
}
.circle-plus {
    width: 20px;
    height: 20px;
    background-color: #37a347;
    border-radius: 50%;
    position: relative;
    margin-top: 15px;
}
.circle-plus::before,
.circle-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: white;
}

.circle-plus::before {
    width: 60%;
    height: 2px;
    margin-left: -30%;
    margin-top: -1px;
}

.circle-plus::after {
    width: 2px;
    height: 60%;
    margin-left: -1px;
    margin-top: -30%;
}

.review-text {
    width: 95%;
    text-align: right;
    padding: 20px;
}

.review-text button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    background: var(--button-blue);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 20px;
}

.review-text button:hover {
    background: var(--button-blue-hover);
}

.space {
    margin-top: 30px;
}
.marketing-points {
    display: flex;
    justify-content: space-around;
    padding: 10px 10px;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 50px;
}

/* Cards */

.more-info-section {
    display: flex;
    justify-content: center;
    text-align: left;
    padding: 40px;
}

.info-container {
    text-align: left;
    max-width: 800px;
}

.info-container h1 {
    font-size: 2.5rem;
}

.info-container p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}

.info-container button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    background: var(--button-blue);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 25px;
}

.info-container button:hover {
    background: var(--button-blue-hover);
}

.cards-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.card {
    position: relative;
    width: 400px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.card:hover {
    cursor: pointer;
    transform: scale(1.02);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.card img:hover {
    filter:blur(0.5px);
}

.card-overlay {
    position: absolute;
    width: 100%;
    padding: 40px;
    text-align: center;
}

.top {
    top: 0;
}

.bottom {
    bottom: 0;
}

.card-overlay h2 {
    font-size: 1.5rem;
    margin: 0;
}

.card-overlay p {
    font-size: 1rem;
    margin-top: 5px;
}

#flip {
    height: 57px;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}

#flip > div > div {
    color: var(--button-blue);
    padding: 0px 8px;
    height: 45px;
    margin-bottom: 45px;
    display: inline-block;
    font-weight: bold;
}

#flip div:first-child {
    animation: show 8s linear infinite;
}

@keyframes show {
    0% { margin-top: -90px; }
    40% { margin-top: -90px; }
    50% { margin-top: 0px; }
    90% { margin-top: 0px; }
    100% { margin-top: -90px; }
}
.dsu-container {
      position: relative;
      width: 90%;
      max-width: 1500px;
      height: 500px;
      margin: 0 auto;
      background: url('https://dehhani.uk/media/uploads/16/1745526435754.jpg') center center / cover no-repeat;
      border-radius: 24px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 40px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.dsu-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

    .dsu-text {
      color: white;
      max-width: 60%;
text-align: left;
    }

    .dsu-text h1 {
      font-size: 48px;
      font-weight: 600;
      margin: 0;
      line-height: 1.2;
    }

    .dsu-text p {
      font-size: 20px;
      margin-top: 10px;
      line-height: 1.5;
      opacity: 0.9;
    }

    .dsu-badge {
      position: absolute;
      bottom: 30px;
      right: 30px;
      width: 100px;
      height: auto;
    }