    /* BASIC */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: #fff; }
    html { scroll-behavior: smooth; }

/* ///////////////////////////////////////////////////////
//////////////////// T O P   B A R //////////////////////
///////////////////////////////////////////////////////// */
    .top-bar {
        width: 100%;
        background: #181818;
        border-bottom: 1px solid #f0f0f0;
    }

    .top-bar-inner {
        max-width: 1100px;
        margin: 0 auto;
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

/*----------------- B U T T O N   P H O N E ------------- */
.btn-phone {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 15px;
    background-color: #ff8c00;
    color: #181818;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1; 
    transition: all 0.3s ease;
    border: none;
}

.btn-phone:hover {
    background-color: #ff8c00;
    color: #fff;
}

.btn-phone img {
    height: 30px;
    width: auto;
    display: block;
    filter: brightness(0);
    transition: filter 0.3s ease;
    transform: translateY(2px);
}

.btn-phone:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .btn-phone { padding: 12px 20px; font-size: 20px; width: 100%; }
    .btn-phone img { height: 24px; }
}

/* ---------------- R I G H T   M E N U -------------------- */
.top-bar-right {
    display: flex;
    gap: 10px;
    height: 70px; 
}

.top-bar-right a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #686868;
    font-size: 14px;
    font-weight: 400; 
    text-transform: uppercase;
    padding: 0 20px;
    height: 100%;
    transition: color 0.2s;
}

.top-bar-right a:hover {
    color: #ff8c00;
    box-shadow: inset 0 -3px 0 #ff8c00; 
}

@media (max-width: 768px) {
    .top-bar-inner { height: auto; flex-direction: column; padding: 20px 10px; gap: 20px; }
    .top-bar-right { height: auto; gap: 5px; flex-wrap: wrap; justify-content: center; }
    .top-bar-right a { height: 40px; padding: 0 10px;}
}

/* ///////////////////////////////////////////////////////
//////////////////// H E R O ////////////////////////////
///////////////////////////////////////////////////////// */
.hero {
    width: 100%;
    padding: 20px 0;
}

.hero img {
    display: block;
    max-width: 900px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* ///////////////////////////////////////////////////////
////////////////  M A I N   H E A D I N G /////////////////
///////////////////////////////////////////////////////// */
.main-heading {
    width: 100%;
    max-width: 900px; 
    margin: 0 auto 40px auto; 
    padding: 0 15px;
    text-align: center;
}

.main-heading h1 {
    font-size: 16px;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 5px;
    line-height: 1.2;
    font-weight: 800;
}

.main-heading h2 {
    font-size: 11px;
    color: #ff8c00;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
    .main-heading {padding-top: 60px; margin-bottom: 120px; } 
}

/* ///////////////////////////////////////////////////////
//////////////// S E C T I O N S   S T Y L E //////////////
///////////////////////////////////////////////////////// */

.content-section {
    width: 100%;
    padding: 30px 0;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0; 
    border: 1px solid #eee; 
    border-radius: 12px;
    overflow: hidden; 
    background: #fff;
}

/* --- section title --- */
.section-title {
    width: 100%;
    background-color: #fcb45c;
    margin-bottom: 0;
}

.section-title h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #181818;
    font-weight: 800;
    padding: 18px 30px;
}

/* --- section content--- */
.section-content {
    padding: 30px; 
}

.section-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- lists-style --- */
.section-content ul {
    list-style: none;
    margin: 20px 0 30px 10px;
}

.section-content li {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.section-content li::before {
    content: "•";
    color: #ff8c00;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* --- table-style --- */
.section-content table {
    width: 100%;
    min-width: 100%; 
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    font-size: 16px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.section-content th {
    background-color: #181818;
    color: #fff;
    text-align: left;
    padding: 15px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: 3px solid #ff8c00;
}

.section-content td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.section-content tr:last-child td { border-bottom: none; }
.section-content tbody tr:nth-child(even) { background-color: #fffaf5; }

/* price last column */
.section-content td:last-child {
    font-weight: 700;
    color: #181818;
    text-align: right;
    white-space: nowrap;
}

.section-content td:first-child::before {
    content: "•";
    color: #ff8c00;
    margin-right: 10px;
    font-weight: bold;
}

/* RWD MOBILE */
@media (max-width: 768px) {
    .content-section { padding: 40px 15px; } 
    .section-content { padding: 20px; }
    .section-content p {font-size: 14px;}
    .section-content table { 
        font-size: 14px; 
        display: table; 
    }
    .section-inner {
        overflow-x: auto;
    }
}

/* ///////////////////////////////////////////////////////
//////////////// E S C A P E   B U T T O N  //////////////
///////////////////////////////////////////////////////// */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff8c00;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 0.8;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #181818;
    color: #ff8c00;
    opacity: 1;
    transform: translateY(-5px);
}


@media (max-width: 480px) {
    .back-to-top { width: 40px; height: 40px; line-height: 40px; bottom: 20px; right: 20px; }
}


/* ///////////////////////////////////////////////////////
/////////////////////// F O O T E R //////////////////////
///////////////////////////////////////////////////////// */
.main-footer {
    background-color: #181818;
    color: #666;
    padding: 60px 0; /* Wyższa stopka */
    margin-top: 60px;
    border-top: 1px solid #333;
    text-align: center; /* Centrowanie tekstu */
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column; /* Układ pionowy */
    align-items: center;    /* Centrowanie w pionie */
    justify-content: center;
}

.footer-inner p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.footer-brand {
    color: #927b5f;
    font-weight: 500;
}

