/* Security Packages Page */
.security-packages {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.security-packages .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.security-header {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    padding-bottom: 20px;
}

.security-header img {
    width: 150px;
    filter: invert(.5);
}

.security-header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #0c2340;
}

/* Product Section */
.product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.product img {
    width: 300px;
    height: auto;
    object-fit: contain;
}

.product-content {
    width: 60%;
}

.product-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0c2340;
    margin-bottom: 10px;
}

.product-content h2 span {
    color: #ff6600;
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.product-content ul li {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.product-content ul li::before {
    content: "•";
    color: #ff6600;
    font-size: 20px;
    margin-right: 10px;
}

.product-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Benefits of Home Security */
.benefits-section {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.benefits-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0c2340;
    margin-bottom: 20px;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list ul li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.benefits-list ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff6600;
    font-size: 18px;
    font-weight: bold;
}

/* Let's Get Started Section */
.get-started {
    background-color: white;
    padding: 50px 0;
}

.get-started .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side Content */
.get-started-text {
    flex: 1;
    max-width: 50%;
    text-align: left;
    padding-right: 30px;
}

.get-started-text h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0c2340;
    margin-bottom: 15px;
}

.get-started-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.get-started-text img {
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
}

.get-started-text h3 {
    font-size: 24px;
    font-weight: bold;
    color: #0c2340;
    margin-top: 10px;
}

.phone-number {
    font-size: 22px;
    font-weight: bold;
    color: #0073e6;
}

/* Right Side Form */
.form-container {
    background: #e5f0ff;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container .required-text {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-container label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.form-container input,
.form-container textarea,
.form-container select {
    width: 80%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.form-container textarea {
    height: 100px;
    resize: vertical;
}

.form-container button {
    width: 100%;
    padding: 12px;
    background-color: #0c2340;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.form-container button:hover {
    background-color: #ff6600;
}

/* Disclaimer Text */
.form-container .disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    line-height: 1.4;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .get-started .container {
        flex-direction: column;
        text-align: center;
    }

    .get-started-text {
        max-width: 100%;
        padding-right: 0;
    }

    .form-container {
        max-width: 100%;
        margin-top: 30px;
    }
}
/* Responsive Design */
@media screen and (max-width: 900px) {
    .product {
        flex-direction: column;
        text-align: center;
    }

    .product img {
        width: 80%;
        margin-bottom: 20px;
    }

    .product-content {
        width: 100%;
    }

    .benefits-section {
        text-align: left;
    }

    .benefits-list {
        text-align: left;
    }

    .get-started .container {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .security-header{
        flex-direction: column;
    }
}
