@font-face {
    font-family: 'Satoshi';
    src: url('satoshifonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.woff2') format('woff2-variations'),
         url('satoshifonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.woff2') format('woff2');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}


:root {
    --bg-color: #f5f5f5;
    --text-color: #111;
    --spacing: clamp(50px, 5vw, 100px);
    --gradient-start: #c4c4c4; /* Intensywniejszy jasny szary */
    --gradient-end: #a8d0f0;   /* Intensywniejszy błękit */
    --gradient-animation: linear-gradient(120deg, var(--gradient-start), var(--gradient-end), var(--gradient-start));
}

body {
    margin: 0;
    padding: var(--spacing);
    font-family: 'Satoshi', sans-serif;
    background: var(--gradient-animation);
    background-size: 300% 300%; /* Powiększenie gradientu dla efektu ruchu */
    animation: gradientMove 6s ease infinite; /* Animacja gradientu */
    color: var(--text-color);
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
}

/* Definicja animacji gradientu */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo img {
    max-height: 50px;  /* Zmniejszamy wysokość logo */
    width: auto;
    display: block;
}

nav a {
    color: inherit;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1rem;
    opacity: 0.7;
}

nav a:hover {
    opacity: 1;
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Wyśrodkowanie w poziomie */
    text-align: center; /* Wyśrodkowanie tekstu */
}

.hero-content {
    max-width: 900px;
}

h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.03em;
    animation: fadeIn 1.5s ease-out forwards;
    white-space: normal; /* Pozwala na łamanie linii */
    overflow: visible; /* Usunięcie ukrywania tekstu */
    border-right: none; /* Usunięcie kursora tekstowego */
    line-height: 1.2; /* Ustawienie odstępu między liniami */
}

h1 span {
    display: block; /* Każda część tekstu w osobnej linii */
    animation: fadeIn 1.5s ease-out forwards; /* Animacja pojawiania się */
}

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

.hero-text {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    max-width: 600px;
    opacity: 0.7;
    font-weight: 400;
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    nav a {
        margin-left: 1rem;
    }
}

.menu-toggle {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.5rem;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    padding: 0.5rem;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close {
    font-size: 1.5rem;
}

.menu-toggle:hover {
    opacity: 1;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    display: none;
}

.fullscreen-menu.active {
    display: block;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 100;
    padding: var(--spacing);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-nav a {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    position: relative;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
}

.menu-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

.menu-nav a:hover {
    opacity: 1;
    transform: none;
}

.menu-nav a:hover::after {
    width: 100%;
}

.close-btn {
    font-size: 1.5rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.hamburger {
    width: 24px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    transition: transform 0.3s ease;
}

.hamburger .line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

.menu-close .hamburger .line:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-close .hamburger .line:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu & Navigation Styles */
.page-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.content-wrapper {
    transition: filter 0.5s ease;
}

.content-wrapper.blur {
    filter: blur(5px);
}

.menu-container {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 400px;
    z-index: 2000;
    pointer-events: none; /* Crucial: let clicks pass through when menu is closed */
}

/* Hamburger styles moved to style-updates.css */

.hamburger .line {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: 0.4s;
    border-radius: 2px;
}

.menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 400px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    z-index: 2001;
}

.menu.active {
    transform: translateX(0);
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: -1;
}

.menu a {
    font-size: 24px;
    text-align: left;
    padding: 15px 20px;
    margin: 5px 20px;
    width: calc(100% - 40px);
    color: var(--text-color);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    background: transparent;
    opacity: 0.7;
    position: relative;
    transition: opacity 0.3s ease;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

.menu a:hover {
    opacity: 1;
}

.menu a:hover::after {
    width: 100%;
}

.menu a.show {
    opacity: 0.7;
    transform: none;
}

.menu a:hover {
    transform: scale(1.05);
}

.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.user-email {
    margin: 20px 20px 10px;
    color: var(--text-color);
    font-size: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--accent);
    width: calc(100% - 40px);
}

.content {
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post {
    padding: 1.5rem;
    background: #fff;
    border-radius: 4px;
}

.blog-post h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.excerpt {
    margin-bottom: 1.5rem;
}

.read-more {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.read-more:hover {
    opacity: 1;
}

/* About page styles */
.about-content {
    max-width: 900px;
}

.lead {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    opacity: 0.8;
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.4;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.about-grid section {
    position: relative;
}

.about-grid h2 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-grid p {
    opacity: 0.7;
}

/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    background: white;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem 2rem;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.contact-form button:hover {
    opacity: 0.8;
}

/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service {
    padding: 2rem;
    background: white;
    transition: transform 0.2s;
}

.service:hover {
    transform: translateY(-5px);
}

.service h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service p {
    opacity: 0.7;
}

/* Pricing page styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
}

.price-card {
    padding: 3rem 2rem;
    background: white;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 1.5rem 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.price-card li {
    padding: 0.75rem 0;
    opacity: 0.7;
}

/* Pricing Table Styles */
.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.pricing-section-title {
    font-size: 2rem;
    margin: 3rem 0 2rem;
    text-align: center;
}

.pricing-category {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pricing-category h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pricing-category table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-category th,
.pricing-category td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-category th {
    font-weight: 500;
    background: #f8f8f8;
}

.pricing-category.wide {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
}

.disclaimer p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .pricing-category {
        padding: 1rem;
    }
    
    .pricing-category th,
    .pricing-category td {
        padding: 0.75rem;
    }
    
    .pricing-category table {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Common page layout */
.page-header {
    margin-bottom: var(--spacing);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    opacity: 0.7;
    max-width: 600px;
}

.section {
    margin-bottom: calc(var(--spacing) * 2);
}

/* Card components */
.card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

/* Grid layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }
}

/* Button styles */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.button:hover {
    opacity: 0.8;
}

.button-outline {
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.clients {
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.client-logo {
    padding: 1.5rem;
    background: white;
    border-radius: 4px;
    transition: transform 0.2s;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.2s;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

footer {
    background: linear-gradient(120deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-color);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-content p {
    opacity: 0.8; /* Delikatniejszy tekst */
    margin: 0;
}

/* Keyframes for mobile menu slide in animation */
@keyframes slideInMenu {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    60% {
        transform: translateX(-10%);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
    }
}

/* Keyframes for fading in menu links */
@keyframes fadeInLink {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Keyframes for hover bounce effect */
@keyframes hoverBounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Intro section styles */
.intro {
    margin-top: 4rem;
    max-width: 800px;
}

.large-text {
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.8;
}

/* Login page styles */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: var(--bg-color);
    flex: 1;
}

.login-container {
    display: flex;
    gap: 2rem;
}

.login-panel {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

#login-form,
#register-form {
    display: none;
}

.login-panel h2 {
    text-align: center;
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
}

.login-panel form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.login-panel input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Satoshi', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.login-panel input:focus {
    border-color: var(--text-color);
    outline: none;
}

.login-panel button {
    width: 100%;
    padding: 12px;
    background-color: var(--text-color);
    color: var(--bg-color);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.login-panel button:hover {
    opacity: 0.8;
}

.login-panel .toggle-link {
    text-align: center;
    margin-top: 1.5rem;
    font-family: 'Satoshi', sans-serif;
}

.login-panel .toggle-link a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.login-panel .toggle-link a:hover {
    opacity: 1;
}

.message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 6px;
    background-color: var(--text-color);
    color: var(--bg-color);
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

/* Opinions Section */
.opinions {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.opinions h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
}

.opinions form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.opinions label {
    font-weight: bold;
    color: #333;
}

.opinions input[type="text"],
.opinions textarea {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

.opinions textarea {
    min-height: 150px;
    resize: vertical;
}

.opinions button[type="submit"] {
    background-color: #47494b;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: center;
}

.opinions button[type="submit"]:hover {
    background-color: #5a5a5a;
}

/* Opinion List */
.opinion-list {
    display: grid;
    gap: 1.5rem;
}

.opinion {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.opinion h3 {
    color: #333;
    margin: 0 0 1rem 0;
}

.opinion p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.opinion em {
    color: #888;
    font-size: 0.9rem;
}

.delete-btn {
    background-color: #ff4444;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

.delete-btn:hover {
    background-color: #cc0000;
}

/* Portfolio Styles */
.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.portfolio-section {
    margin-bottom: 4rem;
}

.portfolio-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.portfolio-item p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .portfolio-container {
        padding: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* User Panel Styles */
.panel {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.panel h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.logout-container {
    text-align: right;
    margin-bottom: 2rem;
}

.logout {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ff4444;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.logout:hover {
    background: #cc0000;
}

.no-repairs {
    text-align: center;
    color: #888;
    margin: 2rem 0;
}

.repairs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
}

.repairs-table th,
.repairs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.repairs-table th {
    background: #f8f8f8;
    font-weight: 500;
}

.repair-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.status-oczekuje {
    background: #fff3cd;
    color: #856404;
}

.status-w_trakcie {
    background: #cce5ff;
    color: #004085;
}

.status-zakonczona {
    background: #d4edda;
    color: #155724;
}

.new-repair {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.button-container {
    text-align: center;
    margin-top: 1.5rem;
}

.new-repair-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #47494b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.new-repair-btn:hover {
    background: #5a5a5a;
}

@media (max-width: 768px) {
    .panel {
        margin: 1rem;
        padding: 1rem;
    }
    
    .repairs-table {
        display: block;
        overflow-x: auto;
    }
}

/* Repair Form Styles */
.repair-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.repair-form h2 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.instructions {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.instructions h3 {
    color: #333;
    margin-bottom: 1rem;
}

.instructions ul {
    list-style-type: none;
    padding: 0;
}

.instructions li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.instructions li:before {
    content: "•";
    color: #47494b;
    position: absolute;
    left: 0;
}

.repair-submission-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.repair-submission-form textarea {
    min-height: 200px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.repair-submission-form button {
    align-self: center;
    padding: 1rem 2.5rem;
    background: #47494b;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.repair-submission-form button:hover {
    background: #5a5a5a;
}

@media (max-width: 768px) {
    .repair-form {
        margin: 1rem;
        padding: 1rem;
    }
}

/* Duplicate styles removed — definitions in style-updates.css */
