/* Global Styles */
:root {
    --primary-color: #ff7b25;
    --primary-dark: #e56a1a;
    --secondary-color: #777777;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --white: #ffffff;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main Content Styles */
main section {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

h3 {
    color: #222222;
    margin: 15px 0 10px;
    font-size: 1.3rem;
}

.intro {
    font-size: 1.1rem;
    line-height: 1.8;
}

ol, ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

.container h2{
    color: #222222;
}
.container i{
    color: var(--primary-color);
}

/* Warranty Section Styles */
.warranty {
    background-color: #fff9f5;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.warranty-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

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

.warranty-icon {
    background-color: #ffebdd;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.general-warranty {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #eee;
}

/* Contact Section Styles */
.contact {
    background-color: #f8f8f8;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

/* Footer Styles */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    main section {
        padding: 20px;
    }
    
    .warranty-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header {
        padding: 30px 0;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .warranty-item {
        padding: 20px;
    }
}

/* Back Home Button Styles */
.back-home-container {
    text-align: center;
    margin: 40px 0;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 123, 37, 0.3);
    border: 2px solid transparent;
}
.back-home-btn i{
    color: var(--white);
}

.back-home-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 123, 37, 0.4);
}

.back-home-btn:active {
    transform: translateY(0);
}

.back-home-btn i {
    transition: transform 0.3s ease;
}

.back-home-btn:hover i {
    transform: translateX(-3px);
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .back-home-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Privacy Policy Specific Styles */
.info-grid, .protection-grid, .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.info-item, .protection-item, .rights-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.info-item:hover, .protection-item:hover, .rights-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    background-color: #ffebdd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.protection-item i, .rights-item i {
    background-color: #ffebdd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 auto 15px;
}

.protection-item h3, .rights-item h3 {
    text-align: center;
    margin: 15px 0 10px;
}

.protection-item p, .rights-item p {
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-grid, .protection-grid, .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item, .protection-item, .rights-item {
        padding: 20px;
    }
}