body {
    font-family: 'Nunito', sans-serif;
    background-color: #222;
    color: #333;
    margin: 0;
    padding: 0;
	max-width: 100vw;
    overflow-x: hidden;
    background-image: url('/images/nuguwoki1.svg');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
	background-size: 80px 80px;
	opacity: 0;
    transition: opacity 0.3s ease;
}
body.loaded {
  opacity: 1;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}
h1 {
    font-size: 22px;
    margin-top: 6px;
    margin-bottom: 6px;
}
h2 {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    padding-bottom: 1px;
}
h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: red;
    border-radius: 4px;
    position: absolute;
    bottom: -4px;
    left: 0;
}
h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 8px;
}
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Regular.woff2') format('woff2'),
         url('/fonts/Nunito-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Bold.woff2') format('woff2'),
         url('/fonts/Nunito-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
nav {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin: 0 15px;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #d4af37;
}
.tedujate2 {
    background-color: white;
    padding: 2px 2px;
    margin: 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}
.negifa8 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    background: white;
    padding: 20px;
    border-radius: 0px;
    max-width: 100%;
    margin: 0 auto;
}
.custom-select {
    position: relative;
    width: 200px;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ccc;
    text-align: center;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.custom-select:hover {
    border-color: #d4af37;
    background: #f9f9f9;
}
.options-container {
    position: absolute;
    top: 100%;
    left: -2px;
    width: 101%;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}
.option {
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.option:last-child {
    border-bottom: none;
}
.option:hover {
    background: #ffdddd;
    color: #d40000;
    font-weight: bold;
}
@media (max-width: 768px) {
    .negifa8 {
        flex-direction: column;
        max-width: 100%;
        padding: 18px 6px 18px 6px;
    }
    .custom-select {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }
    .option {
        font-size: 14px;
    }
}
.model-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 0px 6px 6px 6px;
}
.model-card {
    position: relative;
    flex: 1 1 calc(25% - 10px);
    max-width: 280px;
    aspect-ratio: 3 / 4;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.model-card .bodeku6 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 12px;
    text-align: left;
    color: white;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-shadow: 1px 1px 1px rgba(71, 71, 71, 0.7);
}
.model-card .cimazu1 {
    font-weight: bold;
    font-size: 19px;
    margin: 0;
}
.model-card .hahepo6 {
    font-size: 16px;
    margin: 0px 0 0;
    opacity: 0.8;
}
.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
    .model-card {
        flex: 1 1 calc(50% - 10px);
    }
}
@media (min-width: 769px) and (max-width: 1200px) {
    .model-card {
        flex: 1 1 calc(33.33% - 10px);
    }
}
@media (min-width: 1201px) {
    .model-card {
        flex: 1 1 calc(25% - 10px);
    }
}
.guhopiqe4 {
    max-width: 90%;
    margin: 40px auto;
    text-align: left;
    background: white;
    padding: 20px 24px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    line-height: 1.3;
}

.guhopiqe4 h2, .guhopiqe4 h3 {
    margin-top: 0em;
    margin-bottom: 0.1em;
    font-size: 1.5rem;
    color: #111;
}

.guhopiqe4 p, .guhopiqe4 ul {
    margin-bottom: 1em;
    font-size: 1rem;
    color: #222;
}

.guhopiqe4 ul {
    padding-left: 1.3em;
}

.guhopiqe4 li {
    margin-bottom: 0em;
}

li {
  margin-bottom: 8px;
  line-height: 1.5;
}

ol {
  margin-left: 10px;
  padding-left: 12px;
  list-style-type: decimal;
}

.towo5 {
    text-align: center;
    margin: 0 auto;
    max-width: 430px;
    padding: 0px 0px 18px 0px;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
}
.towo5 img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    margin-bottom: -2px;
}
.towo5 p {
    font-size: 18px;
    color: #555;
}
.fido5 {
    display: inline-block;
    text-decoration: none;
    background: #4CAF50;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 16px;
    transition: background 0.3s ease;
}
.fido5:hover {
    background: #b5902f;
}
@media (max-width: 1024px) {
    .model-card {
        width: calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    .model-card {
        width: 100%;
        max-width: none;
    }
}
.wuwano3 {
    max-width: 400px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wuwano3 label {
    font-weight: bold;
    font-size: 16px;
}
.wuwano3 input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.wuwano3 button {
    padding: 10px;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.wuwano3 button:hover {
    background: #b5902f;
}
.xequgupo8 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.xequgupo8 label {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}
.xequgupo8 label:hover {
    background: #f0f0f0;
}
.profile-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}
.profile-photo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.fido5 {
    display: inline-block;
    margin-top: 0px;
    padding: 10px 15px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease-in-out;
}
.fido5:hover {
    background: #b5902f;
}
@media (max-width: 768px) {
    .model-card {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .model-card:nth-child(-n+8) {
        opacity: 8;
        transform: translateY(0);
    }
    .model-card.visible {
        opacity: 8;
        transform: translateY(0);
    }
}
.betubudo8 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.error-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #dc3545;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.betubudo8.hide,
.error-message.hide {
    opacity: 0;
}
.sere2 {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: 0px auto;
    overflow: hidden;
    border-radius: 0px;
}
.pajajira4 {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 1;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    width: max-content;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255, 255, 255, 200);
    text-shadow: 1px 1px 0 rgba(100, 100, 100, 0.5);
}
.qure7 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 250px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: transparent;
    border: 1px solid white;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 15;
    opacity: 1;
	text-decoration: none;
}
.qure7:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}
.hagefe7 {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    cursor: grab;
}
.bizajera1 {
    min-width: 100%;
}
.bizajera1 img {
    width: 100%;
    height: auto;
    display: block;
}
.xowuno6 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 7px 10px;
    height: 41px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10%;
    transition: background 0.3s ease;
	z-index: 9999;
	opacity: 1;
    touch-action: manipulation;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.peha6 {
    left: 10px;
}
.zuza2 {
    right: 10px;
}
@media (min-width: 768px) {
    .xowuno6 {
        display: block;
    }
}
.yuko8 {
	max-width: 92%;
	margin: 20px auto;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0 0 0 / 20%);
	border: 1px solid #ddd;
    margin-top: 20px;
    text-align: left;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.yuko8 h2 {
    margin-bottom: 24px;
    font-size: 24px;
}
.rife9 {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px;
}
.fasaye3 {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    background: #ffe6e6;
    color: red;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.fasaye3:hover {
    background: #ffcccc;
}
.tixa6 {
    width: 100%;
    max-width: 500px;
    margin: 0px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0 6px 14px rgba(0 0 0 / 20%);
    border: 1px solid #ddd;
    padding: 12px 15px;
    box-sizing: border-box;
}
.wahezoti5 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    text-align: left;
    padding-left: 5px;
}
.pokusu2 {
    width: 1px;
    height: 40px;
    background: #ddd;
}
.welu9 {
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
}
.finamope8 {
    background-image: url('/icons/gimafubi7.png');
}
.wiqocati8 {
    background-image: url('/icons/peca9.png');
}
.wahezoti5:last-child {
    margin-left: 15px;
}
.wuxo6 {
    display: flex;
    flex-direction: column;
}
.neci6 {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}
.muqovi1 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
@media (max-width: 600px) {
    .tixa6 {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    .pokusu2 {
        height: 30px;
        width: 1px;
    }
    .wahezoti5 {
        justify-content: flex-start;
        padding-left: 5px;
    }
}
.kugu7 {
    background: #222;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}
.xagalune8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.xujepa6 a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}
.xujepa6 a:hover {
    color: #ffcc00;
}
.penefeqo1 {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.7;
}
@media (max-width: 768px) {
    .xagalune8 {
        flex-direction: column;
        text-align: center;
    }
    .xujepa6 {
        margin-bottom: 15px;
    }
}
.fijiriqe3 {
    background: #222;
    color: white;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.boli4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.mahixi7 img {
    width: 28px;
    height: 24px;
    transition: 0.3s;
}
.mahixi7 img:hover {
    transform: scale(1.1);
}
.cosi6 img {
    width: 190px;
}
.senefoyi1 img {
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: 0.3s;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0;
    display: block;
}
.senefoyi1 {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.geloceyu5 {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.senefoyi1 img:hover {
    transform: scale(1.1);
}
.qajami6 {
    position: fixed;
    top: 0;
    right: 100%;
    width: 210px;
    height: 100%;
    background: #222;
    color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease-in-out;
    padding-top: 60px;
    overflow-y: auto;
}
.qajami6.open {
    right: 0;
}
.qajami6 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.qajami6 ul li {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.qajami6 ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: 0.3s;
}
.qajami6 ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}
.geloceyu5 {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.geloceyu5:hover {
    color: #ffcc00;
}
.qajami6.active {
    right: 0;
}
@media (max-width: 768px) {
    .boli4 {
        padding: 0 15px;
    }
    .cosi6 img {
        width: 190px;
    }
}
.site-title-link {
  display: inline-block;
  text-decoration: none !important;
  color: inherit !important;
}
.cosi6 .site-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin: 0;
  line-height: 0.3;
  padding: 0.5em 0;
  text-decoration: none;
  color: inherit;
  font-size: clamp(1.5rem, 6vw, 3rem);
}
.cosi6 .site-title .first-word {
  color: #dbdb00;
}
.cosi6 .site-title .second-word {
  color: #fcfcf8;
}
.boli4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cosi6 {
  flex: 1;
  text-align: center;
}
@media (max-width: 480px) {
  .cosi6 .site-title {
    font-size: clamp(1.25rem, 5.3vw, 2.5rem);
  }
}
@media (min-width: 1024px) {
  .cosi6 .site-title {
    font-size: clamp(1rem, 1.7vw, 5rem);
  }
}
.sufuxe7 {
    max-width: 92%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0 0 0 / 20%);
    text-align: left;
    margin: 20px auto;
	border: 1px solid #ddd;
    line-height: 1.6;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.sufuxe7 h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}
.sufuxe7 p {
    font-size: 16px;
    color: #555;
}
.leleka6 {
    max-width: 92%;
    margin: 20px auto;
	text-align: left;
    background: white;
    padding: 20px;
    border-radius: 6px;
	border: 1px solid #ddd;
	box-shadow: 0px 4px 10px rgba(0 0 0 / 20%);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}
.bio-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.bio-label {
    font-weight: bold;
    color: #555;
}
.bio-value {
    text-align: right;
    color: #222;
}
.xube9 {
    color: #2f5da7;
    font-weight: bold;
}
.xube9:hover {
    text-decoration: underline;
    color: #e60000;
}
.rise9 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
}
.jonicumo1 {
    display: inline-block;
    padding: 8px 40px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: linear-gradient(45deg, #e54898, #e67db3);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.jonicumo1:hover {
    background: linear-gradient(45deg, #cc0000, #990000);
    box-shadow: 0 6px 14px rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}
.zirage2 {
	max-width: 92%;
    margin: 20px auto;
    background: #fff;
    padding: 20px 20px 10px 20px;
    margin-top: 20px;
    border-radius: 6px;
    text-align: left;
	border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0 0 0 / 20%);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}
.fefata2 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.fefata2 .mixoqa1,
.fefata2 #openPhone {
    margin-top: 6px;
}
.sipusavi4 {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
	transform: translateY(2px);
}
.zesesufi8 {
    background-image: url('/icons/phone.png');
}
.nutiqo7 {
    background-image: url('/icons/rexo2.png');
}
.mixoqa1 {
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}
.contact-phone {
    color: #e91e63;
    font-weight: bold;
    text-decoration: none;
}
.contact-phone:hover {
    text-decoration: underline;
}
.vitoyuka3 {
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.vitoyuka3:hover {
    background: #388E3C;
}
#openPhone {
    color: #e54898;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    padding: 5px 0;
}
#openPhone:hover {
    color: #e67db3;
}
.vapisi1 {
	max-width: 92%;
	margin: 20px auto;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    margin-top: 20px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.xonewa2 {
    padding: 12px;
}
.xonewa2 .bodeku6 .cimazu1,
.xonewa2 .bodeku6 .hahepo6 {
    color: #fff !important;
}
.vapisi1 h2 {
    margin-bottom: 24px;
    font-size: 24px;
}
.gukogo9 {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px;
}
.gademido7 {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    background: #e6f7ff;
    color: #0077cc;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.gademido7:hover {
    background: #cceeff;
}
.nizi4 {
    max-width: 800px;
    margin: 34px auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.sipu1 {
    font-size: 18px;
    margin-bottom: 20px;
}
.sipu1 p {
    margin: 10px 0;
}
.sipu1 a {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
}
.sipu1 a:hover {
    text-decoration: underline;
}
.nezuju7 {
    font-size: 14px;
    margin-bottom: 20px;
}
.nezuju7 p {
    margin: 4px 0;
}
.nezuju7 a {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
}
.nezuju7 a:hover {
    text-decoration: underline;
}
.foyamohe9 {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.foyamohe9 iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}
.lepifasa8 {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.dume4 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dume4 input,
.dume4 textarea {
    width: 100%;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}
.dume4 textarea {
    height: 120px;
    resize: none;
}
.dume4 button {
    background: #e91e63;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.dume4 button:hover {
    background: #d81b60;
}
.betubudo8 {
    color: green;
    font-weight: bold;
}
#loyelozi1 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px 20px;
    display: none;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
}
#loyelozi1 .cimeqeki5 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#loyelozi1 p {
    flex: 1;
    margin: 0;
    padding-right: 15px;
    text-align: left;
}
#loyelozi1 a {
    color: #d4af37;
    text-decoration: underline;
}
#loyelozi1 button {
    background: #d4af37;
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 12px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
#loyelozi1 button:hover {
    background: #b9972e;
}
#loyelozi1 #buhisi6 {
    background: #666;
    color: #fff;
}
#loyelozi1 #buhisi6:hover {
    background: #555;
}
@media (min-width: 769px) {
    #loyelozi1 #buhisi6 {
        margin-left: 10px;
    }
}
@media (max-width: 768px) {
    #loyelozi1 .cimeqeki5 {
        display: block;
        text-align: center; 
    }
    #loyelozi1 p {
        padding-right: 0;
        padding-bottom: 10px;
        text-align: center; 
    }
    #loyelozi1 button {
        width: 100%; 
        margin-top: 10px;
    }
}
.ribbon {
    position: absolute;
    top: 77px;
    left: -32px;
    width: 158px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    transform: rotate(-45deg);
    transform-origin: left top;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.ribbon-diamond {
    background: #1e2734;
    color: #9bcaf2;
}
.ribbon-gold {
    background: #1e2734;
    color: #cbae11;
}
.ribbon-silver {
    background: #1e2734;
    color: #a3d5ff;
}
.model-card {
    position: relative;
    overflow: hidden;
}
.tariff-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
    color: white;
    text-align: center;
    min-width: 80px;
}
.tariff-icon {
    width: 16px !important;
    height: 16px !important;
    display: inline-block;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 3px;
	transform: translateY(-3px);
}
.tariff-diamond {
    background: #4f46e1;
}
.tariff-silver {
    background: #3f85f7;
}
.tariff-gold {
    background: #121212;
    color: #cbae11;
}
.new-ribbon {
    position: absolute;
    top: 44px;
    left: -48px;
    width: 130px;
    background: #ba2870;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: bold;
    text-align: center;
    padding: 20px 4px 4px 4px;
    transform: rotate(-45deg);
    transform-origin: left top;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.model-card .layugake7 {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 45%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(100, 100, 100, 60%);
}
.model-card .layugake7::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #00cc00;
    border-radius: 50%;
    display: inline-block;
}
.towo5 .layugake7 {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 45%);
    border: 1px solid rgba(100, 100, 100, 60%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    z-index: 10;
	gap: 3px;
}
.towo5 .layugake7 .warukula3 {
    width: 10px;
    height: 10px;
    background-color: #00cc00;
    border-radius: 50%;
    margin-right: 3px;
}
.titotafe8 {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.titotafe8 input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
}
.titotafe8 button {
    background-color: #4f46e1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.titotafe8 button:hover {
    background-color: #3b37c1;
}
.load-more-btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg, #e54898, #e67db3);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.load-more-btn:hover {
    background: linear-gradient(45deg, #e54898, #e67db3);
    box-shadow: 0 6px 14px rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}
.gayumedu6 {
    max-width: 60%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0 0 0 / 20%);
    text-align: left;
    margin: 8px auto;
	border: 1px solid #ddd;
    line-height: 1.6;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    }
.gayumedu6 h1, .gayumedu6 h2 {
    margin-top: 20px;
    }
.gayumedu6 ul {
    margin-left: 20px;
    }
    @media (max-width: 768px) {
.gayumedu6 {
    padding: 14px;
    }
}
@media (min-width: 1024px) {
  .towo5 .xonewa2 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 16px 20px;
  }
}